diff --git a/zone/embxs.cpp b/zone/embxs.cpp index 9b6fae20e..4571a8f8f 100644 --- a/zone/embxs.cpp +++ b/zone/embxs.cpp @@ -115,7 +115,7 @@ XS(XS_EQEmuIO_PRINT) for (i = 0; *cur != '\0'; i++, cur++) { if (*cur == '\n') { - LogQuests(str); + LogQuests("{}", str); len = 0; pos = i + 1; } @@ -124,7 +124,7 @@ XS(XS_EQEmuIO_PRINT) } } if (!log_string.empty()) { - LogQuests(log_string); + LogQuests("{}", log_string); } } diff --git a/zone/quest_interface.h b/zone/quest_interface.h index 4b5183cfb..63310efae 100644 --- a/zone/quest_interface.h +++ b/zone/quest_interface.h @@ -85,7 +85,7 @@ public: } virtual void AddError(std::string error) { - LogQuests(error); + LogQuests("{}", error); errors_.push_back(error); if(errors_.size() > 30) {