From fc5442ad4814680cf0f4c46b100d550e217ee2af Mon Sep 17 00:00:00 2001 From: Fizban Date: Sat, 30 Jan 2010 19:35:48 +0000 Subject: [PATCH] Fixed Immortal Invisibility Bug --- src/act.wizard.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/act.wizard.c b/src/act.wizard.c index 66e1f05..c92d25e 100644 --- a/src/act.wizard.c +++ b/src/act.wizard.c @@ -1590,7 +1590,7 @@ ACMD(do_restore) void perform_immort_vis(struct char_data *ch) { - if ((GET_INVIS_LEV(ch) == 0) && (!AFF_FLAGGED(ch, AFF_HIDE) || !AFF_FLAGGED(ch, AFF_INVISIBLE))) { + if ((GET_INVIS_LEV(ch) == 0) && (!AFF_FLAGGED(ch, AFF_HIDE) && !AFF_FLAGGED(ch, AFF_INVISIBLE))) { send_to_char(ch, "You are already fully visible.\r\n"); return; }