Removed spawn shockwave delay

This commit is contained in:
Anuken
2020-12-06 10:50:13 -05:00
parent cf91bcbd49
commit 4d5c2c83fd

View File

@@ -96,8 +96,8 @@ public class WaveSpawner{
}
public void doShockwave(float x, float y){
Time.run(20f, () -> Fx.spawnShockwave.at(x, y, state.rules.dropZoneRadius));
Time.run(40f, () -> Damage.damage(state.rules.waveTeam, x, y, state.rules.dropZoneRadius, 99999999f, true));
Fx.spawnShockwave.at(x, y, state.rules.dropZoneRadius);
Damage.damage(state.rules.waveTeam, x, y, state.rules.dropZoneRadius, 99999999f, true);
}
public void eachGroundSpawn(Intc2 cons){