[Bug Fix] Add character_instance_safereturns to tables_to_zero_id (#4485)

Co-authored-by: morzain <morzain@users.noreply.github.com>
This commit is contained in:
Morzain 2024-09-26 18:14:32 -04:00 committed by GitHub
parent 5c0bdfdc4c
commit 4d11077b21
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1860,7 +1860,7 @@ bool Database::CopyCharacter(
const int64 new_character_id = (CharacterDataRepository::GetMaxId(*this) + 1);
std::vector<std::string> tables_to_zero_id = { "keyring", "data_buckets" };
std::vector<std::string> tables_to_zero_id = { "keyring", "data_buckets", "character_instance_safereturns" };
TransactionBegin();