From 9fe2558b93d008b3d6a54ab34ea6a9814c56a452 Mon Sep 17 00:00:00 2001 From: Rhade Date: Sat, 17 May 2008 15:38:49 +0000 Subject: [PATCH] Bug fix: Page command was paging when the character was not found and sending a NOPERSON message when he was found. --- changelog | 2 ++ src/act.comm.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/changelog b/changelog index 61886db..0a293a1 100644 --- a/changelog +++ b/changelog @@ -3,6 +3,8 @@ help, find any bugs, or have ideas for improvement please stop by TBA at telnet://tbamud.com:9091 or email rumble@tbamud.com --Rumble tbaMUD 3.56 +[May 17 2008] + Bug fix: Page command was paging when the character was not found and sending a NOPERSON message when he was found. [May 15 2008] - Rumble Updated autorun to fix a random syslog numbering bug. (thanks Zizazat) [May 10 2008] - Rumble diff --git a/src/act.comm.c b/src/act.comm.c index f6cdf34..594ad7b 100644 --- a/src/act.comm.c +++ b/src/act.comm.c @@ -358,7 +358,7 @@ ACMD(do_page) send_to_char(ch, "You will never be godly enough to do that!\r\n"); return; } - if (!(vict = get_char_vis(ch, arg, NULL, FIND_CHAR_WORLD))) { + if ((vict = get_char_vis(ch, arg, NULL, FIND_CHAR_WORLD))) { act(buf, FALSE, ch, 0, vict, TO_VICT); if (!IS_NPC(ch) && PRF_FLAGGED(ch, PRF_NOREPEAT)) send_to_char(ch, "%s", CONFIG_OK);