Skip to content

Commit

Permalink
Fixed typo. Added autolook.
Browse files Browse the repository at this point in the history
  • Loading branch information
luciensadi committed Jan 12, 2025
1 parent 2779b45 commit ec51091
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/spec_procs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7950,7 +7950,7 @@ SPECIAL(grenada_gatekeeper)
if (said_passphrase) {
act("$N glances around, then ushers you towards the sliding door.", FALSE, ch, NULL, mob, TO_CHAR);
act("$N glances around, then ushers $n towards the sliding door.", TRUE, ch, NULL, mob, TO_NOTVICT);
act("You glance around, then usher $N towards the sliding door.", FALSE, ch, NULL, mob, TO_CHAR);
act("You glance around, then usher $N towards the sliding door.", FALSE, ch, NULL, mob, TO_VICT);

rnum_t to_room = real_room(to_room_vnum);
if (to_room < 0) {
Expand All @@ -7962,6 +7962,10 @@ SPECIAL(grenada_gatekeeper)
char_to_room(ch, &world[to_room]);

act("$n is ushered in.", FALSE, ch, NULL, mob, TO_ROOM);

if (!PRF_FLAGGED(ch, PRF_SCREENREADER)) {
look_at_room(ch, 0, 0);
}
return TRUE;
}
}
Expand Down

0 comments on commit ec51091

Please sign in to comment.