aboutsummaryrefslogtreecommitdiff
path: root/frontend/cmd/cheat.cpp
diff options
context:
space:
mode:
authorLoek Le Blansch <loek@pipeframe.xyz>2024-10-29 23:47:03 +0100
committerLoek Le Blansch <loek@pipeframe.xyz>2024-10-29 23:47:03 +0100
commite4261302944303781c952943e3290c99e2cabc52 (patch)
tree19ee0e065473adc54da008444da30c8075b03a27 /frontend/cmd/cheat.cpp
parentb848109e8c70ee00b433ff8f5fde3657c85e7487 (diff)
add todos
Diffstat (limited to 'frontend/cmd/cheat.cpp')
-rw-r--r--frontend/cmd/cheat.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/frontend/cmd/cheat.cpp b/frontend/cmd/cheat.cpp
index ed4e452..6f1c163 100644
--- a/frontend/cmd/cheat.cpp
+++ b/frontend/cmd/cheat.cpp
@@ -1,6 +1,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;
}