implement api changes

This commit is contained in:
ThatGamerBlue
2020-07-16 19:31:09 +01:00
parent 9fc44d80de
commit 5a3992b5c4
5 changed files with 75 additions and 6 deletions

View File

@@ -89,4 +89,12 @@ public abstract class RSItemDefinitionMixin implements RSItemDefinition
return client.getRSItemDefinition(modelOverride).getModel(quantity);
}
@Inject
@Override
public int getHaPrice()
{
int price = getPrice();
return (int) ((float) price * 0.6f);
}
}