Solved
I am 5:30 hours into a modded playthrough when this message pops up:
Error while running event on_tick (ID 0)
LuaItemStack doesn't contain key has_grid.
stack traceback:
__OverMods__/control.lua:64: in function <__OverMods__/control.lua:49>
Cannot play anymore as everytime i load in this message will pop up!
Obviously by looking at the crash notes, it has something to do with OverMods but i am an idiot and dont know how to deal with this, thanks .
Mods:
bobconfig
bobinserters
boblibrary
Factorissimo2
OverMods
bobenemies
bobores
bobvehicleequipment
bobtech
rso-mod
bobplates
bobassembly
bobelectronics
bobgreenhouse
boblogistics
bobmining
bobpower
bobrevamp
bobelectronics_gfxtweak
bobmodules
bobwarfare
bobwarfare
Modded Game Crash, Any help?
-
- Manual Inserter
- Posts: 4
- Joined: Thu May 18, 2017 6:43 am
- Contact:
Modded Game Crash, Any help?
Last edited by SaltySnacks on Thu May 18, 2017 9:52 am, edited 1 time in total.
Re: Modded Game Crash, Any help?
Uninstall or toggle off Overmods
-
- Manual Inserter
- Posts: 4
- Joined: Thu May 18, 2017 6:43 am
- Contact:
Re: Modded Game Crash, Any help?
Yea, i know i could do that but i was hoping if i could fix it without disabling anything...Nexela wrote:Uninstall or toggle off Overmods
Re: Modded Game Crash, Any help?
Extract the OverMods file and open control.lua, the line 64 reads
Replace it with
LuaItemStack.has_grid was removed in 0.14.0, I'm not sure why the mod author still updates the mod without testing it since it is clearly not working anymore.
Code: Select all
if armor.valid_for_read and armor.has_grid then
Code: Select all
if armor.valid_for_read and armor.grid ~= nil then
-
- Manual Inserter
- Posts: 4
- Joined: Thu May 18, 2017 6:43 am
- Contact:
Re: Modded Game Crash, Any help?
I cannot edit this document through Notepad++, any idea why?daniel34 wrote:Extract the OverMods file and open control.lua, the line 64 readsReplace it withCode: Select all
if armor.valid_for_read and armor.has_grid then
LuaItemStack.has_grid was removed in 0.14.0, I'm not sure why the mod author still updates the mod without testing it since it is clearly not working anymore.Code: Select all
if armor.valid_for_read and armor.grid ~= nil then
Re: Modded Game Crash, Any help?
No idea why, Notepad++ is also what I'm using to edit mods. Did you make sure that you extracted the zip file and not just opened the control.lua directly from WinRAR/7-zip/whatever?SaltySnacks wrote:I cannot edit this document through Notepad++, any idea why?
Using the right-click on the zip file "Extract here" option and then editing the control.lua file works for me.
-
- Manual Inserter
- Posts: 4
- Joined: Thu May 18, 2017 6:43 am
- Contact:
Re: Modded Game Crash, Any help?
Ah, that did the trick, thanks mate!daniel34 wrote:No idea why, Notepad++ is also what I'm using to edit mods. Did you make sure that you extracted the zip file and not just opened the control.lua directly from WinRAR/7-zip/whatever?SaltySnacks wrote:I cannot edit this document through Notepad++, any idea why?
Using the right-click on the zip file "Extract here" option and then editing the control.lua file works for me.