--- deliantra/server/server/commands.C 2008/05/06 16:55:26 1.53 +++ deliantra/server/server/commands.C 2008/12/28 10:20:29 1.56 @@ -45,7 +45,6 @@ {"apply", command_apply, 1.0}, /* should be variable */ {"cast", command_cast, 1.0}, /* Is this right? */ - {"disarm", command_disarm, 1.0}, {"dm", command_dm, 0.0}, {"dmhide", command_dmhide, 0.0}, /* Like dm, but don't tell a dm arrived, hide player */ {"drop", command_drop, 1.0}, @@ -55,7 +54,6 @@ {"get", command_take, 1.0}, {"invoke", command_invoke, 1.0}, {"killpets", command_kill_pets, 1.0}, - {"logs", command_logs, 1. / TICK}, {"motd", command_motd, 0.5 / TICK}, {"pickup", command_pickup, 1.0}, {"prepare", command_prepare, 1.0}, @@ -64,7 +62,6 @@ {"skills", command_skills, 0.5 / TICK}, /* shows player list of skills */ {"use_skill", command_uskill, 1.0}, {"ready_skill", command_rskill, 1.0}, - {"search", command_search, 1.0}, {"search-items", command_search_items, 1.0}, {"showpets", command_showpets, 1.0}, {"statistics", command_statistics, 1.0}, @@ -88,11 +85,6 @@ }; const int CommandsSize = sizeof (Commands) / sizeof (CommArray_s); -CommArray_s CommunicationCommands[] = { - {"printlos", command_printlos, 0.0}, -}; -const int CommunicationCommandSize = sizeof (CommunicationCommands) / sizeof (CommArray_s); - /* * Wizard commands (for both) */ @@ -139,7 +131,6 @@ init_commands (void) { qsort (Commands, CommandsSize, sizeof (CommArray_s), compare_A); - qsort (CommunicationCommands, CommunicationCommandSize, sizeof (CommArray_s), compare_A); qsort (WizCommands, WizCommandsSize, sizeof (CommArray_s), compare_A); }