mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
style/whitespace tweaks
This commit is contained in:
@@ -406,11 +406,11 @@ class CollectionState(object):
|
|||||||
basemagic = 32
|
basemagic = 32
|
||||||
elif self.has('Half Magic'):
|
elif self.has('Half Magic'):
|
||||||
basemagic = 16
|
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())
|
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())
|
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
|
basemagic = basemagic
|
||||||
else:
|
else:
|
||||||
basemagic = basemagic + basemagic * self.bottle_count()
|
basemagic = basemagic + basemagic * self.bottle_count()
|
||||||
|
Reference in New Issue
Block a user