Fixed lightning not rendering

This commit is contained in:
Anuken
2018-04-25 21:19:15 -04:00
parent 4b71b30418
commit 094aa5a326
4 changed files with 54 additions and 34 deletions

View File

@@ -193,7 +193,7 @@ public class TurretBullets {
@Override
public void init(Bullet b) {
new Lightning(b.team, hiteffect, damage, b.x, b.y, b.angle(), 30).add();
Lightning.create(b.team, hiteffect, Palette.lancerLaser, damage, b.x, b.y, b.angle(), 30);
}
};