aboutsummaryrefslogtreecommitdiff
path: root/frontend/cmd/help.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/cmd/help.cpp')
-rw-r--r--frontend/cmd/help.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/frontend/cmd/help.cpp b/frontend/cmd/help.cpp
index e4425be..c9e1113 100644
--- a/frontend/cmd/help.cpp
+++ b/frontend/cmd/help.cpp
@@ -4,7 +4,7 @@
using namespace std;
-FollowupAction GameController::cmd_help(string &) {
+void GameController::cmd_help(string &) {
lprtf("De beschikbare commando's zijn: ");
bool first = true;
for (auto & [ key, _ ] : this->cmds) {
@@ -13,6 +13,5 @@ FollowupAction GameController::cmd_help(string &) {
first = false;
}
lprtf(".\n");
- return FollowupAction::NONE;
}