Skip to content

Commit

Permalink
Added staff bypass for gatekeeper
Browse files Browse the repository at this point in the history
  • Loading branch information
luciensadi committed Jan 12, 2025
1 parent ec51091 commit 894215d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/spec_procs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7894,19 +7894,19 @@ SPECIAL(grenada_gatekeeper)

switch (GET_MOB_VNUM(mob)) {
case 101310:
if (CMD_IS("north")) {
if (CMD_IS("north") && !IS_SENATOR(ch)) {
act("$N shakes $S head at you and gestures you back with a \"Sorry, that's for employees only.\"", FALSE, ch, 0, mob, TO_CHAR);
return TRUE;
}
break;
case 101311:
if (CMD_IS("west")) {
if (CMD_IS("west") && !IS_SENATOR(ch)) {
act("$N shakes $S head at you and gestures you back with a \"Sorry, that's for employees only.\"", FALSE, ch, 0, mob, TO_CHAR);
return TRUE;
}
break;
case 101312:
if (CMD_IS("east")) {
if (CMD_IS("east") && !IS_SENATOR(ch)) {
act("$N shakes $S head at you and gestures you back with a \"Sorry, that's for employees only.\"", FALSE, ch, 0, mob, TO_CHAR);
return TRUE;
}
Expand Down

0 comments on commit 894215d

Please sign in to comment.