Information
I have verifed my game files (Steam only)
YesI have disabled all mods
YesI am running the latest game update
YesRequired
Summary
Player can be killed by someone else's earthquake travel eventDescription
This is "trickster god's tithe" event, ep3_laamp_flavour_ewan.40411.It can fire an earthquake for the traveler and that can cause the damage to the province itself.
Including, a 20% chance to kill the holder!
Per the dev comment, it should only happen if it's not a holding of a player.
Except! It actually checks that the county holder *is* a player.
So this travel event, that fired for somebody else going through your capital, can kill you.
Without even giving you an event or anything. This isn't controlled by the harm rule either.
![player killed by earthquake.png player killed by earthquake.png](https://forumcontent.paradoxplaza.com/public/1237191/player killed by earthquake.png)
The brother is the previous player character.
I don't have a savefile to reproduce it, it happened to someone on discord and I opened the event file to check.
I can try to engineer a reproducible save later.
This is the faulty script:
Code:
# If this isn't the direct holding of a player, cause some serious damage.
location.county.holder = {
if = {
limit = {
NOT = { is_ai = yes }
}
random_courtier = {
limit = { location = prev.location }
death = { death_reason = death_consumed_by_earthquake }
}
...
random = {
chance = 20
death = { death_reason = death_consumed_by_earthquake }
}
}
}
Steps to reproduce
Open events\dlc\ep3\ep3_laamp_flavour_ewan_events.txt, go to line 17818Game Version
1.14.2.2Platform
WindowsAdditional Information
Affected Feature
- Events
Save Game
Other Attachments
![player killed by earthquake.png player killed by earthquake.png](https://forumcontent.paradoxplaza.com/thumbnail/public/1237191/player killed by earthquake.png)
- 1