[0.15.10] game crash when someone joined the game.
[0.15.10] game crash when someone joined the game.
I was afk. someone joined and BOOM.
Last edited by mophydeen on Mon May 15, 2017 6:38 pm, edited 1 time in total.
Re: [0.15.10] game crash when someone joined the game.
Thanks for the report,mophydeen wrote:I was afk. someone joined and BOOM.
Can you attach the mods you are using?
Re: [0.15.10] game crash when someone joined the game.
The error is in your scenario script:mophydeen wrote:added the savefile and mods
Code: Select all
script.on_event(defines.events.on_player_created, function(event)
playerSpawnItems(event)
silo_script.gui_init(player)
end)
Code: Select all
script.on_event(defines.events.on_player_created, function(event)
playerSpawnItems(event)
silo_script.gui_init(game.players[event.player_index])
end)
Re: [0.15.10] game crash when someone joined the game.
thank you. this map contained old script files.Klonan wrote:The error is in your scenario script:mophydeen wrote:added the savefile and mods
should beCode: Select all
script.on_event(defines.events.on_player_created, function(event) playerSpawnItems(event) silo_script.gui_init(player) end)
Code: Select all
script.on_event(defines.events.on_player_created, function(event) playerSpawnItems(event) silo_script.gui_init(game.players[event.player_index]) end)
cause it's for me only. Someone tried to join and I thought it was related to something else.