Whoops, fix double assignment.

This commit is contained in:
CaitSith2 2020-08-19 16:10:09 -07:00
parent 458e4a988a
commit c9bd32a809
1 changed files with 1 additions and 1 deletions

View File

@ -357,7 +357,7 @@ def roll_settings(weights):
ret.bush_shuffle = True
ret.tile_shuffle = True
elif ret.enemy_shuffle == "chaosthieves":
ret.killable_thieves = ret.killable_thieves = bool(random.randint(0, 1))
ret.killable_thieves = bool(random.randint(0, 1))
ret.bush_shuffle = True
ret.tile_shuffle = True
ret.enemy_shuffle = True