Added building damage to bullet stats

This commit is contained in:
Anuken
2020-12-21 16:55:04 -05:00
parent 952639a72e
commit 806cea4b33
6 changed files with 12 additions and 8 deletions
@@ -1165,7 +1165,7 @@ abstract class BuildingComp implements Posc, Teamc, Healthc, Buildingc, Timerc,
/** Handle a bullet collision.
* @return whether the bullet should be removed. */
public boolean collision(Bullet other){
damage(other.damage() * other.type().tileDamageMultiplier);
damage(other.damage() * other.type().buildingDamageMultiplier);
return true;
}