From 93fed2d41efa4562a9eebb05e8e66a290daf9e8e Mon Sep 17 00:00:00 2001 From: disintegrate Date: Wed, 4 Mar 2026 21:09:19 +0800 Subject: [PATCH] Changed flag to _DEBUG --- Minecraft.World/SignTileEntity.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.World/SignTileEntity.cpp b/Minecraft.World/SignTileEntity.cpp index ff372cc23..dc189102b 100644 --- a/Minecraft.World/SignTileEntity.cpp +++ b/Minecraft.World/SignTileEntity.cpp @@ -170,7 +170,7 @@ void SignTileEntity::SetMessage(int iIndex,wstring &wsText) if (wsText.length() > MAX_LINE_LENGTH) // MAX_LINE_LENGTH == 15 { wsText = wsText.substr(0, MAX_LINE_LENGTH); -#ifndef _CONTENT_PACKAGE +#ifdef _DEBUG OutputDebugStringW(L"Sign text truncated to 15 characters\n"); #endif }