mirror of
https://github.com/tbamud/tbamud.git
synced 2026-02-25 04:51:44 +01:00
Fixed Immortal Invisibility Bug
This commit is contained in:
@@ -1590,7 +1590,7 @@ ACMD(do_restore)
|
|||||||
|
|
||||||
void perform_immort_vis(struct char_data *ch)
|
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");
|
send_to_char(ch, "You are already fully visible.\r\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user