diff options
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/commands.h b/src/commands.h index 6825159c4..851789282 100644 --- a/src/commands.h +++ b/src/commands.h @@ -126,6 +126,7 @@ namespace Commands decHandler(enableAway); decHandler(testParticle); decHandler(createItems); + decHandler(talkRaw); void replaceVars(std::string &str); } // namespace Commands @@ -219,6 +220,7 @@ enum COMMAND_MAGICATTACK, COMMAND_TEST_PARTICLE, COMMAND_CREATEITEMS, + COMMAND_TALKRAW, COMMAND_HACK, END_COMMANDS }; @@ -312,6 +314,7 @@ static const CommandInfo commands[] = {"magicattack", nullptr, Input::KEY_MAGIC_ATTACK, false}, {"testparticle", &Commands::testParticle, -1, true}, {"createitems", &Commands::createItems, -1, false}, + {"talkraw", &Commands::talkRaw, -1, true}, {"hack", &Commands::hack, -1, true} }; |