Page 1 of 1

quickug_1.0.0 fix for .15.23

Posted: Sat Jun 24, 2017 4:29 pm
by Sunnova
I really missed this mod working/

Here is a fix that will get quickug_1.0.0 working for .15.23

Edit

info.json

Change
"factorio_version": "0.14",
To
"factorio_version": "0.15",

Edit

control.lua

Change line 72

From
if entity.neighbours[1] == nil then
To
if entity.neighbours == nil then


Change line 75

nb = entity.neighbours[1]
To
nb = entity.neighbours

That should do it.