This commit is contained in:
Anuken
2021-02-18 17:00:23 -05:00
parent 06b8dd61c7
commit 5a58f9c71a
4 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -380,7 +380,7 @@ public class Damage{
//this needs to be compensated
if(in != null && in.team != team && in.block.size > 1 && in.health > damage){
//deal the damage of an entire side + 1, to be equivalent with maximum 'standard' damage
in.damage(damage * Math.min((in.block.size + 1), baseRadius * 0.44f));
in.damage(damage * Math.min((in.block.size), baseRadius * 0.45f));
//no need to continue with the explosion
return;
}