mirror of
https://github.com/PaperMC/Paper.git
synced 2025-01-10 10:17:38 +01:00
889ce05e35
By: Doc <nachito94@msn.com>
12 lines
518 B
Diff
12 lines
518 B
Diff
--- a/net/minecraft/world/entity/projectile/WindCharge.java
|
|
+++ b/net/minecraft/world/entity/projectile/WindCharge.java
|
|
@@ -81,7 +81,7 @@
|
|
}
|
|
}
|
|
|
|
- private void explode() {
|
|
+ public void explode() { // PAIL private -> public
|
|
this.level().explode(this, (DamageSource) null, WindCharge.EXPLOSION_DAMAGE_CALCULATOR, this.getX(), this.getY(), this.getZ(), (float) (3.0D + this.random.nextDouble()), false, World.a.BLOW, Particles.GUST, Particles.GUST_EMITTER, SoundEffects.WIND_BURST);
|
|
}
|
|
|