--- deliantra/server/server/commands.C 2006/08/29 05:03:55 1.4 +++ deliantra/server/server/commands.C 2006/08/29 08:01:37 1.5 @@ -1,6 +1,6 @@ /* * static char *rcsid_commands_c = - * "$Id: commands.C,v 1.4 2006/08/29 05:03:55 root Exp $"; + * "$Id: commands.C,v 1.5 2006/08/29 08:01:37 root Exp $"; */ /* @@ -116,7 +116,7 @@ {"afk", command_afk, 0.0}, {"stay", command_stay, 1.0}, /* 1.0 because it is used when using a - * skill on yourself */ + * skill on yourself */ {"north", command_north, 1.0}, {"east", command_east, 1.0}, {"south", command_south, 1.0}, @@ -320,8 +320,8 @@ dummy.name =cmd; asp =(CommArray_s *)bsearch((void *)&dummy, - (void *)Socket_Commands, Socket_CommandsSize, - sizeof(CommArray_s), compare_A); + (void *)Socket_Commands, Socket_CommandsSize, + sizeof(CommArray_s), compare_A); if (asp) return asp->func; return NULL; @@ -338,8 +338,8 @@ dummy.name =cmd; asp =(CommArray_s *)bsearch((void *)&dummy, - (void *)Socket2_Commands, Socket2_CommandsSize, - sizeof(CommArray_s), compare_A); + (void *)Socket2_Commands, Socket2_CommandsSize, + sizeof(CommArray_s), compare_A); if (asp) return asp->func; return NULL;