diff options
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/commands.h b/src/commands.h index bdf4f76c4..824ab089d 100644 --- a/src/commands.h +++ b/src/commands.h @@ -137,6 +137,7 @@ namespace Commands decHandler(uploadServerConfig); decHandler(uploadLog); decHandler(gm); + decHandler(debugSpawn); void replaceVars(std::string &str); } // namespace Commands @@ -240,6 +241,7 @@ enum COMMAND_UPLOADLOG, COMMAND_GM, COMMAND_HACK, + COMMAND_DEBUGSPAWN, END_COMMANDS }; @@ -341,7 +343,8 @@ static const CommandInfo commands[] = {"uploadserverconfig", &Commands::uploadServerConfig, -1, false}, {"uploadlog", &Commands::uploadLog, -1, false}, {"gm", &Commands::gm, -1, true}, - {"hack", &Commands::hack, -1, true} + {"hack", &Commands::hack, -1, true}, + {"debugSpawn", &Commands::debugSpawn, -1, false} }; #undef decHandler |