Fix ItemStats/ItemStatOverlay Typos "substracted" to "subtracted"
This commit is contained in:
@@ -35,7 +35,7 @@ public class ItemStats
|
||||
|
||||
private ItemEquipmentStats equipment;
|
||||
|
||||
public ItemStats substract(ItemStats other)
|
||||
public ItemStats subtract(ItemStats other)
|
||||
{
|
||||
if (other == null)
|
||||
{
|
||||
|
||||
@@ -202,10 +202,10 @@ public class ItemStatOverlay extends Overlay
|
||||
}
|
||||
}
|
||||
|
||||
final ItemStats substracted = s.substract(other);
|
||||
final ItemEquipmentStats e = substracted.getEquipment();
|
||||
final ItemStats subtracted = s.subtract(other);
|
||||
final ItemEquipmentStats e = subtracted.getEquipment();
|
||||
|
||||
if (substracted.isEquipable() && e != null)
|
||||
if (subtracted.isEquipable() && e != null)
|
||||
{
|
||||
b.append(getChangeString("Prayer", e.getPrayer(), false, false));
|
||||
b.append(getChangeString("Speed", e.getAspeed(), false, false));
|
||||
|
||||
Reference in New Issue
Block a user