Added playFirebendingParticles method

Added a method to play the firebending particles for use by external
developers and also to make our jobs easier
This commit is contained in:
AlexTheCoder 2014-08-26 20:46:28 -04:00
parent b9d085915c
commit 48ec6d476c

View file

@ -1915,6 +1915,10 @@ public class Methods {
Suffocate.remove(player);
}
}
}
}
public static void playFirebendingParticles(Location loc) {
loc.getWorld().playEffect(loc, Effect.MOBSPAWNER_FLAMES, 0, 15);
}
}