From 7a709e7d19e48415dc848d16bc0ef97d14528c0d Mon Sep 17 00:00:00 2001 From: MistPhizzle Date: Sat, 6 Sep 2014 11:41:27 -0400 Subject: [PATCH] Add explosion to the end of Combustion --- src/com/projectkorra/ProjectKorra/firebending/Combustion.java | 1 + 1 file changed, 1 insertion(+) diff --git a/src/com/projectkorra/ProjectKorra/firebending/Combustion.java b/src/com/projectkorra/ProjectKorra/firebending/Combustion.java index b5f6b99e..6e279937 100644 --- a/src/com/projectkorra/ProjectKorra/firebending/Combustion.java +++ b/src/com/projectkorra/ProjectKorra/firebending/Combustion.java @@ -152,6 +152,7 @@ public class Combustion { if (instances.containsKey(player)) { Combustion combustion = instances.get(player); combustion.createExplosion(combustion.location, combustion.power, breakblocks); + ParticleEffect.EXPLODE.display(combustion.location, (float) Math.random(), (float) Math.random(), (float) Math.random(), 0, 3); } }