aboutsummaryrefslogtreecommitdiff
path: root/frontend/cmd/wait.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/cmd/wait.cpp')
-rw-r--r--frontend/cmd/wait.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/frontend/cmd/wait.cpp b/frontend/cmd/wait.cpp
index 0911d72..1a53d01 100644
--- a/frontend/cmd/wait.cpp
+++ b/frontend/cmd/wait.cpp
@@ -1,8 +1,10 @@
+#include "backend/Dungeon.h"
+
#include "../GameController.h"
using namespace std;
-FollowupAction GameController::cmd_wait(string &) {
- return FollowupAction::UPDATE;
+void GameController::cmd_wait(string &) {
+ this->dungeon->update();
}