Skip to content
Snippets Groups Projects
Commit 92c01282 authored by Chris Kearney's avatar Chris Kearney
Browse files

amount of healing should be based on target player

parent a778bf54
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ public class HealingSpell extends Spell {
@Override
public void attackSpell(Player destinationPlayer, Player sourcePlayer) {
Stats stats = sourcePlayer.getPlayerStatsWithEquipmentAndLevel();
Stats stats = destinationPlayer.getPlayerStatsWithEquipmentAndLevel();
this.setEffects(Sets.newHashSet(fullHealEffect.setApplyStatsOnTick(new StatsBuilder().setCurrentHealth((stats.getMaxHealth())).createStats()).createEffect()));
super.attackSpell(destinationPlayer, sourcePlayer);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment