Fixed quest error format string

This commit is contained in:
Exynox 2025-04-13 15:27:25 +03:00
parent 610c7e7020
commit ca06bcc611

View File

@ -1640,7 +1640,7 @@ namespace quest
vsnprintf(szMsg, sizeof(szMsg), fmt, args);
va_end(args);
SPDLOG_ERROR("Quest error occurred in [{}:{}}]: {}", func, line, szMsg);
SPDLOG_ERROR("Quest error occurred in [{}:{}]: {}", func, line, szMsg);
if (test_server)
{
LPCHARACTER ch = GetCurrentCharacterPtr();