From e528c3fbb873602a46730b7e6d6f3de808a38941 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Thu, 29 Dec 2022 21:50:29 +1100 Subject: [PATCH] - SW: Repair whoopsie in `BunnyCheat()`. --- source/games/sw/src/cheats.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/sw/src/cheats.cpp b/source/games/sw/src/cheats.cpp index 83c00e281..d3c987635 100644 --- a/source/games/sw/src/cheats.cpp +++ b/source/games/sw/src/cheats.cpp @@ -209,7 +209,7 @@ bool BunnyCheat(cheatseq_t* c) return false; sw_bunnyrockets = !sw_bunnyrockets; - PutStringInfo(&Player[myconnectindex], GStrings(Pachinko_Win_Cheat ? "TXTS_BUNNYENABLED" : "TXTS_BUNNYDISABLED")); + PutStringInfo(&Player[myconnectindex], GStrings(sw_bunnyrockets ? "TXTS_BUNNYENABLED" : "TXTS_BUNNYDISABLED")); return true; }