ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/server/commands.C
(Generate patch)

Comparing deliantra/server/server/commands.C (file contents):
Revision 1.53 by root, Tue May 6 16:55:26 2008 UTC vs.
Revision 1.55 by root, Fri Dec 19 22:47:30 2008 UTC

53 {"examine", command_examine, 0.5 / TICK}, 53 {"examine", command_examine, 0.5 / TICK},
54 {"fix_me", command_fix_me, 0.0}, 54 {"fix_me", command_fix_me, 0.0},
55 {"get", command_take, 1.0}, 55 {"get", command_take, 1.0},
56 {"invoke", command_invoke, 1.0}, 56 {"invoke", command_invoke, 1.0},
57 {"killpets", command_kill_pets, 1.0}, 57 {"killpets", command_kill_pets, 1.0},
58 {"logs", command_logs, 1. / TICK},
59 {"motd", command_motd, 0.5 / TICK}, 58 {"motd", command_motd, 0.5 / TICK},
60 {"pickup", command_pickup, 1.0}, 59 {"pickup", command_pickup, 1.0},
61 {"prepare", command_prepare, 1.0}, 60 {"prepare", command_prepare, 1.0},
62 {"resistances", command_resistances, 1.0}, 61 {"resistances", command_resistances, 1.0},
63 {"rotateshoottype", command_rotateshoottype, 1.0}, 62 {"rotateshoottype", command_rotateshoottype, 1.0},
85 {"southeast", command_southeast, 0.0}, 84 {"southeast", command_southeast, 0.0},
86 {"southwest", command_southwest, 0.0}, 85 {"southwest", command_southwest, 0.0},
87 {"northwest", command_northwest, 0.0}, 86 {"northwest", command_northwest, 0.0},
88}; 87};
89const int CommandsSize = sizeof (Commands) / sizeof (CommArray_s); 88const int CommandsSize = sizeof (Commands) / sizeof (CommArray_s);
90
91CommArray_s CommunicationCommands[] = {
92 {"printlos", command_printlos, 0.0},
93};
94const int CommunicationCommandSize = sizeof (CommunicationCommands) / sizeof (CommArray_s);
95 89
96/* 90/*
97 * Wizard commands (for both) 91 * Wizard commands (for both)
98 */ 92 */
99CommArray_s WizCommands[] = { 93CommArray_s WizCommands[] = {
137 131
138void 132void
139init_commands (void) 133init_commands (void)
140{ 134{
141 qsort (Commands, CommandsSize, sizeof (CommArray_s), compare_A); 135 qsort (Commands, CommandsSize, sizeof (CommArray_s), compare_A);
142 qsort (CommunicationCommands, CommunicationCommandSize, sizeof (CommArray_s), compare_A);
143 qsort (WizCommands, WizCommandsSize, sizeof (CommArray_s), compare_A); 136 qsort (WizCommands, WizCommandsSize, sizeof (CommArray_s), compare_A);
144} 137}
145 138

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines