- SW: Repair whoopsie in BunnyCheat().

This commit is contained in:
Mitchell Richters 2022-12-29 21:50:29 +11:00
parent 1d69ebe9b0
commit e528c3fbb8

View file

@ -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;
}