blob: 6f1c1639511eb5e2c71f2ebc31b10d39cdd590a5 (
plain)
1
2
3
4
5
6
7
8
9
|
#include "../Player.h"
#include "../print.h"
FollowupAction Player::cmd_cheat(Argv argv) {
this->cheating = !this->cheating;
lprtf("Cheats staan nu %s.\n", this->cheating ? "aan" : "uit");
return FollowupAction::NONE;
}
|