mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
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:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user