Browse Source

BETA: Fixing minor issue causing problems when reloading scripts (Not getting properly unloaded)

Rumen Nikiforov 11 năm trước cách đây
mục cha
commit
70c7921724

+ 1 - 1
L2J_Server_BETA/java/com/l2jserver/gameserver/model/quest/Quest.java

@@ -2661,7 +2661,7 @@ public class Quest extends AbstractScript implements IIdentifiable
 		
 		if (removeFromList)
 		{
-			return QuestManager.getInstance().removeScript(this);
+			return QuestManager.getInstance().removeScript(this) && super.unload();
 		}
 		return super.unload();
 	}