mirror of
https://github.com/EQEmu/Server.git
synced 2026-06-27 16:37:17 +00:00
[Hotfix] Perl__send_parcel GCC compile error
This commit is contained in:
@@ -5886,7 +5886,7 @@ bool Perl__send_parcel(perl::reference table_ref)
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
std::string name = table.exists("name") ? table["name"] : "";
|
std::string name = table.exists("name") ? table["name"] : std::string();
|
||||||
uint32 character_id = table.exists("character_id") ? table["character_id"] : 0;
|
uint32 character_id = table.exists("character_id") ? table["character_id"] : 0;
|
||||||
|
|
||||||
if (character_id) {
|
if (character_id) {
|
||||||
|
|||||||
Reference in New Issue
Block a user