Changeset 796
- Timestamp:
- 05/01/07 12:43:32 (2 years ago)
- Files:
-
- 1.8.2/branches/devel/CHANGES.182 (modified) (1 diff)
- 1.8.2/branches/devel/src/cmds.c (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.2/branches/devel/CHANGES.182
r793 r796 21 21 * config() no longer lists options that can't be set 22 22 with @config/set. Suggested by Trispis. [SW] 23 * 'page foo\=bar' pages the last person you paged. Fix by Nathan 24 Baum. 23 25 24 26 Fixes: 1.8.2/branches/devel/src/cmds.c
r525 r796 1087 1087 1088 1088 COMMAND (cmd_page) { 1089 int has_eq = 0;1090 if (args_raw && *args_raw && strchr(args_raw, '='))1091 has_eq = 1;1092 1089 if (SW_ISSET(sw, SWITCH_PORT)) 1093 1090 do_page_port(player, arg_left, arg_right); … … 1096 1093 !(SW_ISSET(sw, SWITCH_BLIND) || 1097 1094 (!(SW_ISSET(sw, SWITCH_LIST)) && (BLIND_PAGE))), 1098 SW_ISSET(sw, SWITCH_OVERRIDE), has_eq);1095 SW_ISSET(sw, SWITCH_OVERRIDE), rhs_present); 1099 1096 } 1100 1097
