Apply item skills on player enter method.

This commit is contained in:
MobiusDevelopment
2021-11-01 10:57:29 +00:00
parent a1ae250a2a
commit eb2f13f997
38 changed files with 76 additions and 76 deletions

View File

@ -9935,7 +9935,10 @@ public class PlayerInstance extends Playable
}
}
// Buff and status icons
// Apply item skills.
_inventory.applyItemSkills();
// Buff and status icons.
if (Config.STORE_SKILL_COOLTIME)
{
restoreEffects();

View File

@ -319,9 +319,6 @@ public class EnterWorld implements IClientIncomingPacket
// Send Teleport Bookmark List
client.sendPacket(new ExGetBookMarkInfoPacket(player));
// Apply item skills.
player.getInventory().applyItemSkills();
// Send Item List
client.sendPacket(new ItemList(player, false));