From 0ca5b4af34a75ebfa8d73ac086903e618f8fa037 Mon Sep 17 00:00:00 2001 From: qndel Date: Sat, 21 Aug 2021 13:48:46 +0200 Subject: [PATCH] stop gold from displaying red --- Source/debug.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/debug.cpp b/Source/debug.cpp index 41b3243e8..8e7530d70 100644 --- a/Source/debug.cpp +++ b/Source/debug.cpp @@ -120,6 +120,7 @@ std::string DebugCmdGiveGoldCheat(const std::string_view parameter) myPlayer._pGold += GOLD_MAX_LIMIT; itemId = myPlayer._pNumInv; } + CalcPlrInv(MyPlayerId, true); return "You are now rich! If only this was as easy in real life..."; }