miniMAXIme: Character scaler and selector

by Pi-C

The player stands like a giant near the vehicles. Now you can adjust the size of your character -- and you can change your appearance at any time if you've other mods that provide extra characters!

Tweaks
4 months ago
0.16 - 2.0
41.8K

b [Error in RSO] cant start new game

13 days ago

Error while running event minime::on_init()
Error when running interface function RSO.ignoreSurface: rso-mod/control.lua:2160: attempt to index field '?' (a nil value)
stack traceback:
rso-mod/control.lua:2160: in function <rso-mod/control.lua:2155>
stack traceback:
[C]: in function 'call'
Pi-C_lib/common.lua:384: in function 'remote_call'
minime/scripts/surfaces.lua:449: in function 'blacklist_surface'
minime/scripts/surfaces.lua:124: in function 'create_surface'
minime/control.lua:275: in function 'init'
minime/control.lua:383: in function <minime/control.lua:379>

when debug mode enabled this error comes but there is more to it - https://mods.factorio.com/mod/rso-mod/discussion/6a45381147bcd37254b64da3

6 days ago

This is an error in RSO. My mod calls its remote function when there are no players yet, but RSO assumes that a player already exists, so game.players[1].print() will fail.

It should work again if you change line 2160 of RSO's control.lua from

if debug_enabled then

to

if debug_enabled and game.players[1] then

New response