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:
ivanfeli
2020-05-04 14:13:09 -04:00
committed by GitHub
parent 1ffa73540f
commit a791223fb4

View File

@@ -48,7 +48,7 @@ public class CastleWarsBandage implements Effect
);
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
public StatsChanges calculate(Client client)