Fix carrier option not taking effect this turn.

This really shouldn't need to happen but I don't feel like rewriting the
culling code right now. There's no reason for these to be persisted to
the Game at all, we should be generating these once they're needed.
This commit is contained in:
Dan Albert
2021-10-21 20:05:07 -07:00
parent 626740366b
commit 6dae5b98d5
8 changed files with 72 additions and 16 deletions

View File

@@ -26,7 +26,15 @@ def bounded_float_option(
return field(
metadata={
SETTING_DESCRIPTION_KEY: BoundedFloatOption(
page, section, text, detail, tooltip, min, max, divisor
page,
section,
text,
detail,
tooltip,
causes_expensive_game_update=False,
min=min,
max=max,
divisor=divisor,
)
},
default=default,