Limit Vake skulls to 1 temporarily
Vake skulls are now nerfed when using more than one. Until the diminishing returns are understood, this script will now use only 1 at most.
This commit is contained in:
parent
f2a421afca
commit
abd5139aad
|
@ -84,6 +84,10 @@ def Solve(shadowy_level, bone_market_fluctuations = None, zoological_mania = Non
|
||||||
|
|
||||||
# Skull
|
# Skull
|
||||||
for skull in Skull:
|
for skull in Skull:
|
||||||
|
# Interim treatment until diminishing returns are analyzed
|
||||||
|
if skull == Skull.VAKE_SKULL:
|
||||||
|
actions[skull] = model.NewBoolVar(skull.value.name)
|
||||||
|
else:
|
||||||
actions[skull] = model.NewIntVar(0, cp_model.INT32_MAX, skull.value.name)
|
actions[skull] = model.NewIntVar(0, cp_model.INT32_MAX, skull.value.name)
|
||||||
|
|
||||||
# Appendage
|
# Appendage
|
||||||
|
|
Loading…
Reference in New Issue