Changeset 83 for trunk/src/game/Chat.cpp
- Timestamp:
- 11/19/08 13:32:42 (17 years ago)
- Files:
-
- 1 modified
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/game/Chat.cpp
r79 r83 634 634 for(uint32 i = 0; table[i].Name != NULL; i++) 635 635 { 636 if( *subcmd && !hasStringAbbr(table[i].Name, subcmd))636 if( !hasStringAbbr(table[i].Name, cmd.c_str()) ) 637 637 continue; 638 638 … … 722 722 continue; 723 723 724 if( !hasStringAbbr(table[i].Name, subcmd))724 if( *subcmd && !hasStringAbbr(table[i].Name, subcmd)) 725 725 continue; 726 726