- SW: Repair whoopsie in BunnyCheat().

This commit is contained in:
Mitchell Richters 2022-12-29 21:50:29 +11:00
parent 9b3137b2e6
commit 13f40210c6

View file

@ -209,7 +209,7 @@ bool BunnyCheat(cheatseq_t* c)
return false; return false;
sw_bunnyrockets = !sw_bunnyrockets; 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; return true;
} }