When a player renames a spider-vehicle, the on_entity_renamed event doesn't set the player_index key in the event object.
When renaming a train-stop, the player_index is correctly returned.
The API documentation for on_entity_renamed states that the player_index is not returned only when by_script is true. However in my case it is false.
I used only one mod with the following control.lua :
Code: Select all
script.on_event(defines.events.on_entity_renamed, function (event)
log("------ on_entity_renamed -------")
log("---- TYPE : " .. event.entity.type)
log(serpent.block(event))
end)
Code: Select all
------ on_entity_renamed -------
---- TYPE : spider-vehicle
{
by_script = false,
entity = {
__self = "userdata"
},
name = 59,
old_name = "",
tick = 488
}
------ on_entity_renamed -------
---- TYPE : train-stop
{
by_script = false,
entity = {
__self = "userdata"
},
name = 59,
old_name = "TheGoldJoker",
player_index = 1,
tick = 488
}