From d00b2d7fcdde9110a9e41a545439f77bce93e4dc Mon Sep 17 00:00:00 2001 From: xazax-hun Date: Tue, 27 Dec 2011 20:41:29 +0000 Subject: Fixed an issue, players were able to see disabled NPCs with maya purple card. (bugreport:2221) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@15288 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/npc.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'src/map/npc.c') 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] -- cgit v1.2.3-70-g09d2