From e1948f2831130ee7d993fa8897aeaba83fb7f765 Mon Sep 17 00:00:00 2001 From: Ketmar Dark Date: Fri, 22 Apr 2016 15:42:03 +0300 Subject: [PATCH] added hidden "goobers" console command to turn on cheats --- src/game/g_console.pas | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/game/g_console.pas b/src/game/g_console.pas index 8b9ef25..72503f2 100644 --- a/src/game/g_console.pas +++ b/src/game/g_console.pas @@ -892,6 +892,15 @@ begin if Trim(L) = '' then Exit; + if L = 'goobers' then + begin + Line := ''; + CPos := 1; + gCheats := true; + g_Console_Add('Your memory serves you well.'); + exit; + end; + if not Quiet then begin g_Console_Add('> '+L); -- 2.29.2