[Database] Fix default value for time_of_death in character_corpses (#4060)

* [Database] Fix default value for `time_of_death` in `character_corpses`

* Extra `NULL`

* Update repository

* Repositories with updated structure this time
This commit is contained in:
JJ
2024-02-11 16:12:07 -05:00
committed by GitHub
parent 3e6924d10e
commit 86a2a86ba8
3 changed files with 12 additions and 2 deletions
@@ -237,7 +237,7 @@ public:
e.y = 0;
e.z = 0;
e.heading = 0;
e.time_of_death = 0;
e.time_of_death = std::time(nullptr);
e.guild_consent_id = 0;
e.is_rezzed = 0;
e.is_buried = 0;