mirror of
https://github.com/tbamud/tbamud.git
synced 2026-01-01 23:18:49 +01:00
Fixed Immortal Invisibility Bug
This commit is contained in:
parent
ef9d61d984
commit
fc5442ad48
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue