More typo corrections.
This commit is contained in:
parent
9a74d78555
commit
2eb1dc75df
@ -5870,7 +5870,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5876,7 +5876,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5878,7 +5878,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5872,7 +5872,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5851,7 +5851,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5851,7 +5851,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5852,7 +5852,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5767,7 +5767,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -985,7 +985,7 @@ public abstract class Creature extends WorldObject implements ISkillsHolder
|
||||
// Check for a bow
|
||||
if ((weaponItem != null) && (weaponItem.getItemType() == WeaponType.BOW))
|
||||
{
|
||||
// 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
|
||||
if (!checkAndEquipArrows())
|
||||
{
|
||||
// Cancel the action because the PlayerInstance have no arrow
|
||||
|
@ -8230,7 +8230,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.<BR>
|
||||
* Equip arrows needed in left hand and send a Server->Client packet ItemList to the PlayerInstance then return True.<BR>
|
||||
* <BR>
|
||||
* @return true, if successful
|
||||
*/
|
||||
@ -8250,7 +8250,7 @@ public class PlayerInstance extends Playable
|
||||
// Equip arrows needed in left hand
|
||||
getInventory().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
|
||||
final ItemList il = new ItemList(this, false);
|
||||
sendPacket(il);
|
||||
}
|
||||
@ -14160,7 +14160,7 @@ public class PlayerInstance extends Playable
|
||||
@Override
|
||||
public boolean updatePosition(int gameTicks)
|
||||
{
|
||||
// Disables custom movement for NCInstance when Old Synchronization is selected
|
||||
// Disables custom movement for PlayerInstance when Old Synchronization is selected
|
||||
if (Config.COORD_SYNCHRONIZE == -1)
|
||||
{
|
||||
return super.updatePosition(gameTicks);
|
||||
|
@ -1075,7 +1075,7 @@ public class Quest extends ManagedScript
|
||||
}
|
||||
|
||||
/**
|
||||
* Add quests to the NCInstance of the player.<BR>
|
||||
* Add quests to the PlayerInstance of the player.<BR>
|
||||
* <BR>
|
||||
* <U><I>Action : </U></I><BR>
|
||||
* Add state of quests, drops and variables for quests in the HashMap _quest of PlayerInstance
|
||||
|
@ -675,7 +675,7 @@ public class UseItem extends GameClientPacket
|
||||
{
|
||||
player.getInventory().setPaperdollItem(Inventory.PAPERDOLL_LHAND, item);
|
||||
player.broadcastUserInfo();
|
||||
// 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
|
||||
final ItemList il = new ItemList(player, false);
|
||||
sendPacket(il);
|
||||
return;
|
||||
|
@ -456,7 +456,7 @@ public abstract class Creature extends WorldObject implements ISkillsHolder, IDe
|
||||
}
|
||||
|
||||
/**
|
||||
* This will untransform a player if they are an instance of Ncinstance and if they are transformed.
|
||||
* This will untransform a player if they are an instance of PlayerInstance and if they are transformed.
|
||||
*/
|
||||
public void untransform()
|
||||
{
|
||||
|
@ -320,7 +320,7 @@ public class UseItem implements IClientIncomingPacket
|
||||
{
|
||||
player.getInventory().setPaperdollItem(Inventory.PAPERDOLL_LHAND, item);
|
||||
player.broadcastUserInfo();
|
||||
// Send a Server->Client packet ItemList to this NcINstance to update left hand equipment.
|
||||
// Send a Server->Client packet ItemList to this PlayerInstance to update left hand equipment.
|
||||
client.sendPacket(new ItemList(player, false));
|
||||
return;
|
||||
}
|
||||
|
@ -5841,7 +5841,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5842,7 +5842,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5827,7 +5827,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5838,7 +5838,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5838,7 +5838,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
@ -5735,7 +5735,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.
|
||||
* @param type
|
||||
*/
|
||||
@Override
|
||||
|
Loading…
Reference in New Issue
Block a user