From: Ari Johnson Date: Thu, 8 Jan 2015 22:02:21 +0000 (-0500) Subject: Allow RP players to page if they have the RPChat power X-Git-Url: https://git.theari.com/?a=commitdiff_plain;h=124ba1075fd119c7042580c6d75143b7dfce5c23;p=cobramush.git Allow RP players to page if they have the RPChat power --- diff --git a/src/speech.c b/src/speech.c index a2e9fc0..3ae5ae5 100644 --- a/src/speech.c +++ b/src/speech.c @@ -711,7 +711,8 @@ do_page(dbref player, const char *arg1, const char *arg2, dbref cause, safe_chr(' ', tbuf, &tp); safe_str_space(current, tbuf, &tp); #ifdef RPMODE_SYS - } else if(RPMODE(player) && LEVEL(target) < 23) { + } else if(RPMODE(player) + && !(Can_RPCHAT(player) || LEVEL(target) >= 23)) { notify(player, "You can't do that in RPMODE."); safe_chr(' ', tbuf, &tp); safe_str_space(Name(target), tbuf, &tp);