mirror of
https://github.com/EQEmu/Server.git
synced 2026-05-22 12:18:27 +00:00
Revert "[Quest API] Cleanup string copies and push_backs. (#2807)"
This reverts commit bcc2e022dc.
This commit is contained in:
@@ -65,12 +65,12 @@ void ZoneLaunch::Start() {
|
||||
|
||||
if(m_port) {
|
||||
std::string arg = m_zone + std::string(":") + std::to_string(m_port);
|
||||
spec->args.emplace_back(arg);
|
||||
spec->args.push_back(arg);
|
||||
} else {
|
||||
spec->args.emplace_back(m_zone);
|
||||
spec->args.push_back(m_zone);
|
||||
}
|
||||
|
||||
spec->args.emplace_back(m_launcherName);
|
||||
spec->args.push_back(m_launcherName);
|
||||
spec->handler = this;
|
||||
spec->logFile = m_config->LogPrefix + m_zone + m_config->LogSuffix;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user