[1.1.61] on_entity_renamed doesn't return player_index for spider-vehicle entities

This subforum contains all the issues which we already resolved.
joscherrer
Manual Inserter
Manual Inserter
Posts: 1
Joined: Wed Jul 27, 2022 12:34 pm
Contact:

[1.1.61] on_entity_renamed doesn't return player_index for spider-vehicle entities

Post by joscherrer »

Hello,

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)
Then renamed a spidertron and a train stop. It produced the following logs.

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
}
I attached the save (on_entity_renamed.zip), the mod (squadi_0.1.0.zip) and the logs (factorio-current.log).
Attachments
squadi_0.1.0.zip
(572 Bytes) Downloaded 109 times
factorio-current.log
(7.85 KiB) Downloaded 104 times
on_entity_renamed.zip
(1.22 MiB) Downloaded 119 times
Rseding91
Factorio Staff
Factorio Staff
Posts: 15251
Joined: Wed Jun 11, 2014 5:23 am
Contact:

Re: [1.1.61] on_entity_renamed doesn't return player_index for spider-vehicle entities

Post by Rseding91 »

Thanks for the report. It's now fixed for the next release.
If you want to get ahold of me I'm almost always on Discord.
Post Reply

Return to “Resolved Problems and Bugs”