Skip to content

Commit

Permalink
Fix typo causing incorrect charts
Browse files Browse the repository at this point in the history
  • Loading branch information
VitorGoatman committed Aug 5, 2022
1 parent 855c219 commit a3f9020
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/geomancer.nim
Original file line number Diff line number Diff line change
Expand Up @@ -53,16 +53,17 @@ proc chart() =
ns = getNieces(ms,ds)
rw = sumFigures(ns[0],ns[1])
lw = sumFigures(ns[2],ns[3])
ju = sumFigures(rw,lw)
ju = sumFigures(lw,rw)
echo fmt shieldmsg
else:
let reading = geomancy()
ms = reading.ms
ds = reading.ds
ns = reading.ns
lw = reading.lw
rw = reading.lw
rw = reading.rw
ju = reading.ju
echo fmt shieldmsg
echo fmt shieldmsg
if args["house"]:
echo fmt housemsg

Expand Down

0 comments on commit a3f9020

Please sign in to comment.