Skip to content

Commit

Permalink
handle forceReuse bool
Browse files Browse the repository at this point in the history
  • Loading branch information
noskill committed Nov 13, 2024
1 parent a381aab commit 0cfefac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tagilmo/utils/mission_builder.py
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ def defaultworld(seed=None, forceReset=False, forceReuse=False):
if forceReset:
world_str += 'forceReset="' + forceReset + '" '
if forceReuse:
world_str += 'forceReuse="' + forceReuse + '" '
world_str += 'forceReuse="' + str(forceReuse).lower() + '" '
world_str += '/>'
return world_str

Expand Down

0 comments on commit 0cfefac

Please sign in to comment.