client: removal of deprecated methods

This commit is contained in:
Justin
2021-11-02 20:53:14 +11:00
parent 77b3d38a28
commit a653dff3bc
4 changed files with 5 additions and 97 deletions

View File

@@ -12,11 +12,6 @@ public abstract class RSPlayerCompositionMixin implements RSPlayerComposition
@Override
public int getEquipmentId(KitType type)
{
if (type.ordinal() > 11)
{
return -1;
}
int id = getEquipmentIds()[type.getIndex()];
if (id < 512)
{
@@ -29,11 +24,6 @@ public abstract class RSPlayerCompositionMixin implements RSPlayerComposition
@Override
public int getKitId(KitType type)
{
if (type.ordinal() > 11)
{
return -1;
}
int id = getEquipmentIds()[type.getIndex()];
if (id < 256 || id >= 512)
{