Hi, I took a quick look at this and have spotted the problem and let the mod author know.
It's a quick fix you can make on your own if you want to though. Open the MoreBiters mod folder and open the control.lua file in a text editor. Then at the bottom of the file add this:
script.on_configuration_changed(
function()
game.print("Checking More Biters global vars...")
if (global[PREFIX .. "shiftTick"]==nil) then
global[PREFIX .. "shiftTick"] = 0
end
if (global[PREFIX .. "shiftTick2"]==nil) then
global[PREFIX .. "shiftTick2"] = 0
end
if (global[PREFIX .. "-mimic-counter"]==nil) then
global[PREFIX .. "-mimic-counter"] = 1
end
end
)
Then reload your last working save (from the previous version)
*If you don't have a save from the last working version (ie, you made a save since installing the 1.2.2 update) you can force the on_configuration_change script to run by turning another mod off or on temporarily. (eg evogui works well)
Alternatively you can wait for the author to update and you won't need to do anything but install the new version :)