diff options
Diffstat (limited to 'src/commands.h')
-rw-r--r-- | src/commands.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/commands.h b/src/commands.h index b09979050..58f3bf176 100644 --- a/src/commands.h +++ b/src/commands.h @@ -54,7 +54,6 @@ namespace Commands decHandler(hack); decHandler(priceLoad); decHandler(priceSave); - decHandler(trade); decHandler(disconnect); decHandler(undress); decHandler(attack); @@ -103,8 +102,7 @@ namespace Commands enum { - COMMAND_TRADE = 0, - COMMAND_PRICELOAD, + COMMAND_PRICELOAD = 0, COMMAND_PRICESAVE, COMMAND_CACHEINFO, COMMAND_DISCONNECT, @@ -155,7 +153,6 @@ enum static const CommandInfo commands[] = { - {"trade", &Commands::trade, -1, true}, {"priceload", &Commands::priceLoad, -1, false}, {"pricesave", &Commands::priceSave, -1, false}, {"cacheinfo", &Commands::cacheInfo, -1, false}, |