Fix for passing std::string to vsprintf

This commit is contained in:
KimLS 2022-02-11 01:15:02 -08:00
parent db988e4261
commit 66935fe21b

View File

@ -8248,7 +8248,7 @@ void Mob::SendCastRestrictionMessage(int requirement_id, bool target_requirement
*/ */
std::string msg = ""; const char *msg = "";
if (target_requirement) { if (target_requirement) {
msg = "Your target does not meet the spell requirements. "; msg = "Your target does not meet the spell requirements. ";