More typo corrections.

This commit is contained in:
MobiusDevelopment
2019-10-15 03:49:23 +00:00
parent 9a74d78555
commit 2eb1dc75df
20 changed files with 22 additions and 22 deletions

View File

@@ -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()
{

View File

@@ -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;
}