Răsfoiți Sursa

Fix for No Landing zones check

GodKratos 16 ani în urmă
părinte
comite
7cb8eca807

+ 1 - 1
L2_GameServer/java/net/sf/l2j/gameserver/model/actor/instance/L2PcInstance.java

@@ -8535,7 +8535,7 @@ public final class L2PcInstance extends L2PlayableInstance
 	// returns false if the change of mount type fails.
 	public boolean setMount(int npcId, int mountType)
 	{
-		if (checkLandingState() && mountType == 2)
+		if (checkLandingState() && mountType == 0 && isFlying())
 			return false;
 
 		switch(mountType)