This commit is contained in:
Anuken
2020-10-08 13:08:49 -04:00
parent eb0ab3b3e5
commit e05ac5ae41
3 changed files with 3 additions and 9 deletions
@@ -311,7 +311,7 @@ public abstract class BulletType extends Content{
bullet.data = data;
bullet.drag = drag;
bullet.hitSize = hitSize;
bullet.damage = damage < 0 ? this.damage : damage;
bullet.damage = (damage < 0 ? this.damage : damage) * bullet.damageMultiplier();
bullet.add();
if(keepVelocity && owner instanceof Velc) bullet.vel.add(((Velc)owner).vel().x, ((Velc)owner).vel().y);