PennMUSH Community

Changeset 1260

Show
Ignore:
Timestamp:
09/12/08 18:46:38 (3 months ago)
Author:
shawnw
Message:

#7648: @chan/recall

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • 1.8.3/branches/devel/CHANGES.183

    r1259 r1260  
    4949   @chan/title <channel>= will clear it. Patch by Talvo, suggested by 
    5050   Ender. 
     51  * @chan/recall could be used on any channel, not just by people on 
     52   a given channel. Patch by Talvo. 
    5153 
    5254Functions: 
  • 1.8.3/branches/devel/game/txt/hlp/pennchat.hlp

    r1250 r1260  
    195195  start display from.  If <lines> is an elapsed time, like '1h', 
    196196  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. 
    198198 
    199199  See "help @channel4" for more. 
  • 1.8.3/branches/devel/src/extchat.c

    r1257 r1260  
    35303530  } 
    35313531  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.")); 
    35343534    return; 
    35353535  }