I found out what is going on here! :)
They changed LuaConstantCombinatorControlBehavior etc.:
Changed 'control_behavior.parameters.parameters' to just 'control_behavior.parameters' for
LuaDeciderCombinatorControlBehavior, LuaConstantCombinatorControlBehavior,
and LuaArithmeticCombinatorControlBehavior.
I looked into control.lua and found two lines affected by this:
- line 1006:
combinator.get_control_behavior().parameters = {
parameters = parameters
}
changed to: combinator.get_control_behavior().parameters = parameters
and line 1030:
check(combinator.get_control_behavior().parameters.parameters)
changed to: check(combinator.get_control_behavior().parameters)
and now hold on tight: Logistic Carts is working so far! :D