mirror of
https://github.com/TrinityCore/TrinityCore.git
synced 2026-01-31 06:07:37 +01:00
Core: Append single character to stream as character, not as a string
This commit is contained in:
@@ -46,7 +46,7 @@ void RealmList::UpdateRealm(uint32 ID, const std::string& name, const std::strin
|
||||
|
||||
// Append port to IP address.
|
||||
std::ostringstream ss;
|
||||
ss << address << ":" << port;
|
||||
ss << address << ':' << port;
|
||||
realm.address = ss.str();
|
||||
realm.gamebuild = build;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user