Bladeren bron

BETA: Fixing enter world problems.
* Reported by: thorl2, u3games, !LasTravel, badboy29, max.cheat, nBd, Tavo22
* Reviewed by: Zoey76
* Tested by: Tavo22

Nos 11 jaren geleden
bovenliggende
commit
38ba47304f

+ 6 - 6
L2J_Server_BETA/java/com/l2jserver/gameserver/model/actor/instance/L2PcInstance.java

@@ -7351,12 +7351,6 @@ public final class L2PcInstance extends L2Playable
 			// Retrieve from the database all skills of this L2PcInstance and add them to _skills
 			player.restoreCharData();
 			
-			// Buff and status icons
-			if (Config.STORE_SKILL_COOLTIME)
-			{
-				player.restoreEffects();
-			}
-			
 			// Reward auto-get skills and all available skills if auto-learn skills is true.
 			player.rewardSkills();
 			
@@ -10825,6 +10819,12 @@ public final class L2PcInstance extends L2Playable
 			}
 		}
 		
+		// Buff and status icons
+		if (Config.STORE_SKILL_COOLTIME)
+		{
+			restoreEffects();
+		}
+		
 		revalidateZone(true);
 		
 		notifyFriends();