diff --git a/platform/platform-modern/src/main/java/tc/oc/pgm/platform/modern/ModernEffects.java b/platform/platform-modern/src/main/java/tc/oc/pgm/platform/modern/ModernEffects.java index ae0b7370d6..1640a84a67 100644 --- a/platform/platform-modern/src/main/java/tc/oc/pgm/platform/modern/ModernEffects.java +++ b/platform/platform-modern/src/main/java/tc/oc/pgm/platform/modern/ModernEffects.java @@ -62,11 +62,11 @@ public void beam(World world, Location location, DyeColor dyeColor) { @Override public void spawnFlame(World world, Location location) { - world.spawnParticle(Particle.FLAME, location, 40, 0, 0.15f, 0, 0, true); + world.spawnParticle(Particle.FLAME, location, 40, 0, 0.15f, 0, 0, null, true); } @Override public void explosion(Player player, Location location) { - player.spawnParticle(Particle.EXPLOSION, location, 1, 0d, 0d, 0d, 0, true); + player.spawnParticle(Particle.EXPLOSION, location, 1, 0d, 0d, 0d, 0, null, true); } }