0.18.22 Broken Mods Fix
Posted: Thu Apr 30, 2020 3:21 pm
For anyone who authors or maintains mods that have been broken by the update to 18.22 that removed the "script-only" and "all" types within CustomInput, here is how to fix it:
In data.lua, edit the following line:
to
And/or, edit the following line:
to
I believe this line may also be deleted since "none" is the default.
In data.lua, edit the following line:
Code: Select all
consume = "all"
Code: Select all
consume = "game-only"
Code: Select all
consume = "script-only"
Code: Select all
consume = "none"