What
The on_player_driving_changed_state event no longer fires when a vehicle is destroyed and the driver kicked out. This used to be the case before, and changed somewhere since 1.1.42.It might be a regression after 100122. It's the only thing I could find in the changelogs that seems relevant.
Reproduction
Start any game, paste the following command to print out a message when the driving_state_changed event fires.Code: Select all
/c
script.on_event(defines.events.on_player_driving_changed_state,
function (event) game.print("Changed state") end
)

Code: Select all
/c game.player.character.vehicle.die()
Or, see the event firing in 1.1.42 (which is the older version I tested with).