Skip to content

Commit

Permalink
Turned print statements off
Browse files Browse the repository at this point in the history
  • Loading branch information
cspgdds authored Dec 4, 2023
1 parent 98ea23f commit 5cdba70
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flee/spawning.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,10 +212,10 @@ def spawn_daily_displaced(e, t, d):
#__refugees_raw = 0

for l in e.locations:
print(l.name, l.capacity, d.day0pops.get(l.name,0), file=sys.stderr)
#print(l.name, l.capacity, d.day0pops.get(l.name,0), file=sys.stderr)
if l.capacity > 0 :
l.capacity -= int(float(d.day0pops.get(l.name,0)))
print(l.name, l.capacity, file=sys.stderr)
#print(l.name, l.capacity, file=sys.stderr)


if new_refs < 0:
Expand Down

0 comments on commit 5cdba70

Please sign in to comment.