From 55dd33e947f539babf003a45668607f8d1da87eb Mon Sep 17 00:00:00 2001 From: Emagi Date: Mon, 10 Mar 2025 14:41:05 -0400 Subject: [PATCH] included version in config get struct failure --- source/common/ConfigReader.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/common/ConfigReader.cpp b/source/common/ConfigReader.cpp index 33869f4..5afa036 100644 --- a/source/common/ConfigReader.cpp +++ b/source/common/ConfigReader.cpp @@ -88,7 +88,7 @@ PacketStruct* ConfigReader::getStruct(const char* name, int16 version){ } MStructs.unlock(); if(!new_latest_version && !latest_version) - LogWrite(PACKET__ERROR, 0, "Packet", "Could not find struct named '%s'", name); + LogWrite(PACKET__ERROR, 0, "Packet", "Could not find struct named '%s' with version: %i", name, version); return new_latest_version; } int16 ConfigReader::GetStructVersion(const char* name, int16 version){