mirror of
https://github.com/EQEmu/Server.git
synced 2026-09-05 15:36:38 +00:00
[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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user