style/whitespace tweaks

This commit is contained in:
Kevin Cathcart 2018-02-10 17:23:35 -05:00
parent aa3a828282
commit e090692c15
1 changed files with 4 additions and 4 deletions

View File

@ -406,11 +406,11 @@ class CollectionState(object):
basemagic = 32
elif self.has('Half Magic'):
basemagic = 16
if self.world.difficulty == 'hard' and fullrefill == False:
if self.world.difficulty == 'hard' and not fullrefill:
basemagic = basemagic + int(basemagic * 0.5 * self.bottle_count())
elif self.world.difficulty == 'expert' and fullrefill == False:
elif self.world.difficulty == 'expert' and not fullrefill:
basemagic = basemagic + int(basemagic * 0.25 * self.bottle_count())
elif self.world.difficulty == 'insane' and fullrefill == False:
elif self.world.difficulty == 'insane' and not fullrefill:
basemagic = basemagic
else:
basemagic = basemagic + basemagic * self.bottle_count()