Changeset 1260
- Timestamp:
- 09/12/08 18:46:38 (3 months ago)
- Files:
-
- 1.8.3/branches/devel/CHANGES.183 (modified) (1 diff)
- 1.8.3/branches/devel/game/txt/hlp/pennchat.hlp (modified) (1 diff)
- 1.8.3/branches/devel/src/extchat.c (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
1.8.3/branches/devel/CHANGES.183
r1259 r1260 49 49 @chan/title <channel>= will clear it. Patch by Talvo, suggested by 50 50 Ender. 51 * @chan/recall could be used on any channel, not just by people on 52 a given channel. Patch by Talvo. 51 53 52 54 Functions: 1.8.3/branches/devel/game/txt/hlp/pennchat.hlp
r1250 r1260 195 195 start display from. If <lines> is an elapsed time, like '1h', 196 196 messages from within the given interval will be recalled. You must 197 be on a channel to recall from it.197 be on a channel or able to join it to recall from it. 198 198 199 199 See "help @channel4" for more. 1.8.3/branches/devel/src/extchat.c
r1257 r1260 3530 3530 } 3531 3531 u = onchannel(player, chan); 3532 if (!u && !Chan_Can_ Access(chan, player)) {3533 notify(player, T("CHAT: You must join a channel to recall from it."));3532 if (!u && !Chan_Can_Join(chan, player)) { 3533 notify(player, T("CHAT: You must be able to join a channel to recall from it.")); 3534 3534 return; 3535 3535 }
