summaryrefslogtreecommitdiff
path: root/commands.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'commands.cpp')
-rw-r--r--commands.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands.cpp b/commands.cpp
index 3e78463..322d160 100644
--- a/commands.cpp
+++ b/commands.cpp
@@ -104,7 +104,7 @@ CommandArg* CommandsModule::getCommandArgs(vector<string>& split, const CommandA
{
case STR: args[i-1].str = (char*)split[i].c_str(); break;
case NUM: args[i-1].num = std::stoi(split[i]); break;
- case DIR: args[i-1].dir = LEFT; break;
+ case MOVDIR: args[i-1].dir = LEFT; break;
case STR_REST:
{
string rest = "";