item stats: Fix Castle Wars bracelet bandage heal amount
The amount a bandage heals while wearing a castle wars bracelet is increased by 50%, not the amount of a player's health. Hence, the actual amount healed is 15%.
This commit is contained in:
@@ -48,7 +48,7 @@ public class CastleWarsBandage implements Effect
|
|||||||
);
|
);
|
||||||
|
|
||||||
private static final double BASE_HP_PERC = .10;
|
private static final double BASE_HP_PERC = .10;
|
||||||
private static final double BRACELET_HP_PERC = .50;
|
private static final double BRACELET_HP_PERC = .15;
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public StatsChanges calculate(Client client)
|
public StatsChanges calculate(Client client)
|
||||||
|
|||||||
Reference in New Issue
Block a user