Fixed RailBulletType not dealing damage

This commit is contained in:
Anuken
2021-06-03 19:49:42 -04:00
parent 00ca247d0f
commit c29d75f5d1
2 changed files with 2 additions and 2 deletions

View File

@@ -70,8 +70,8 @@ public class RailBulletType extends BulletType{
@Override
public void hitEntity(Bullet b, Hitboxc entity, float health){
handle(b, entity, health);
super.hitEntity(b, entity, health);
handle(b, entity, health);
}
@Override