summaryrefslogtreecommitdiff
path: root/src/map/npc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/npc.c')
-rw-r--r--src/map/npc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/map/npc.c b/src/map/npc.c
index 4606cfc8e..0d112b937 100644
--- a/src/map/npc.c
+++ b/src/map/npc.c
@@ -169,13 +169,19 @@ int npc_enable(const char* name, int flag)
}
if (flag&1)
+ {
nd->sc.option&=~OPTION_INVISIBLE;
+ clif_spawn(&nd->bl);
+ }
else if (flag&2)
nd->sc.option&=~OPTION_HIDE;
else if (flag&4)
nd->sc.option|= OPTION_HIDE;
else //Can't change the view_data to invisible class because the view_data for all npcs is shared! [Skotlex]
+ {
nd->sc.option|= OPTION_INVISIBLE;
+ clif_clearunit_area(&nd->bl,CLR_OUTSIGHT); // Hack to trick maya purple card [Xazax]
+ }
if (nd->class_ == WARP_CLASS || nd->class_ == FLAG_CLASS)
{ //Client won't display option changes for these classes [Toms]