mirror of
https://github.com/MarioSpore/Grinch-AP.git
synced 2025-10-21 20:21:32 -06:00
Put in support for old Progressive item key
I will probably regret this.
This commit is contained in:
@@ -108,9 +108,10 @@ class Progressive(Choice):
|
||||
alias_false = 0
|
||||
alias_true = 2
|
||||
default = 2
|
||||
alias_random = 1
|
||||
|
||||
def want_progressives(self, random):
|
||||
return random.choice([True, False]) if self.value == self.option_grouped_random else int(self.value)
|
||||
return random.choice([True, False]) if self.value == self.option_grouped_random else bool(self.value)
|
||||
|
||||
|
||||
class RecipeIngredients(Choice):
|
||||
|
Reference in New Issue
Block a user