no changes, just whitespaces

This commit is contained in:
spinerak
2024-05-31 02:08:17 +02:00
parent 43d102b285
commit 65e8703b33
2 changed files with 3 additions and 3 deletions

View File

@@ -15,7 +15,7 @@ class gameDifficulty(Choice):
option_hard = 3
option_extreme = 4
default = 2
class scoreForLastCheck(Range):
"""
The items in the item pool will always allow you to reach a score of 1000.
@@ -26,7 +26,7 @@ class scoreForLastCheck(Range):
range_start = 500
range_end = 1000
default = 1000
class scoreForGoal(Range):
"""
This setting determines what score you need to reach to finish the game.

View File

@@ -159,7 +159,7 @@ class YachtDiceWorld(World):
extraPointsAdded = 0
while diceSimulation(self.itempool + self.precollected, "state_is_a_list", self.options) < 1000:
while diceSimulation(self.itempool + self.precollected, "state_is_a_list", self.options) < 1000:
allitems = self.itempool + self.precollected
dice_fragments_in_pool = allitems.count("Dice") * amDiceF + allitems.count("Dice Fragment")
if dice_fragments_in_pool + 1 >= 9 * amDiceF: