Surfaces_remake


Reach up to the skies or dig deep below, expand your base vertically... If you're into that kind of thing. Original by Simcra.

6 years ago
0.14 - 0.16
18

b Please Do NOT Override "util"

7 years ago
(updated 7 years ago)

In script/lib/util.lua, please change line 16 from
util = {}
to
if not util then util = {} end

The original line of code overrides the whole util library from vanilla Factorio, making other mods to throw error when accessing the functions in it, like util.table.deepcopy
The updated code only create a new instance of util if it has not existed yet.

This should fix the compatibility issue for Creative Mode, and probably also other mods.

7 years ago

Thank you very much for this help! now it should work with almost any mod

New response