From 9a74d785553cccec941a7adb931609463be7bb33 Mon Sep 17 00:00:00 2001 From: MobiusDevelopment <8391001+MobiusDevelopment@users.noreply.github.com> Date: Tue, 15 Oct 2019 03:39:14 +0000 Subject: [PATCH] Minor typo correction. --- .../model/actor/instance/PlayerInstance.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java index 501915c992..3467b581e3 100644 --- a/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java +++ b/L2J_Mobius_CT_2.6_HighFive/java/org/l2jmobius/gameserver/model/actor/instance/PlayerInstance.java @@ -2213,7 +2213,7 @@ public class PlayerInstance extends Playable } /** - * Set the Fame of this NcInstane + * Set the Fame of this PlayerInstane * @param fame */ public void setFame(int fame) @@ -6115,7 +6115,7 @@ public class PlayerInstance extends Playable } /** - * Equip arrows needed in left hand and send a Server->Client packet ItemList to the NcINstance then return True. + * Equip arrows needed in left hand and send a Server->Client packet ItemList to the PlayerInstance then return True. */ @Override protected boolean checkAndEquipArrows() @@ -6130,7 +6130,7 @@ public class PlayerInstance extends Playable // Equip arrows needed in left hand _inventory.setPaperdollItem(Inventory.PAPERDOLL_LHAND, _arrowItem); - // Send a Server->Client packet ItemList to this NcINstance to update left hand equipement + // Send a Server->Client packet ItemList to this PlayerInstance to update left hand equipement sendPacket(new ItemList(this, false)); } } @@ -6143,7 +6143,7 @@ public class PlayerInstance extends Playable } /** - * Equip bolts needed in left hand and send a Server->Client packet ItemList to the NcINstance then return True. + * Equip bolts needed in left hand and send a Server->Client packet ItemList to the PlayerInstance then return True. */ @Override protected boolean checkAndEquipBolts() @@ -6158,7 +6158,7 @@ public class PlayerInstance extends Playable // Equip arrows needed in left hand _inventory.setPaperdollItem(Inventory.PAPERDOLL_LHAND, _boltItem); - // Send a Server->Client packet ItemList to this NcINstance to update left hand equipement + // Send a Server->Client packet ItemList to this PlayerInstance to update left hand equipement sendPacket(new ItemList(this, false)); } }