2019-12-11 01:56:03 +01:00
|
|
|
From 0048c6713b2c1c206635ebefaf64a04c8b6d82ef Mon Sep 17 00:00:00 2001
|
2016-03-01 00:09:49 +01:00
|
|
|
From: Sudzzy <originmc@outlook.com>
|
|
|
|
Date: Wed, 2 Mar 2016 14:48:03 -0600
|
|
|
|
Subject: [PATCH] Disable explosion knockback
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-12-11 01:56:03 +01:00
|
|
|
index f038d3f7d..25e071718 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
|
|
|
+++ b/src/main/java/com/destroystokyo/paper/PaperWorldConfig.java
|
2019-10-27 00:55:58 +02:00
|
|
|
@@ -156,4 +156,9 @@ public class PaperWorldConfig {
|
2018-07-15 03:53:17 +02:00
|
|
|
optimizeExplosions = getBoolean("optimize-explosions", false);
|
|
|
|
log("Optimize explosions: " + optimizeExplosions);
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
+
|
|
|
|
+ public boolean disableExplosionKnockback;
|
|
|
|
+ private void disableExplosionKnockback(){
|
|
|
|
+ disableExplosionKnockback = getBoolean("disable-explosion-knockback", false);
|
|
|
|
+ }
|
|
|
|
}
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/EntityLiving.java b/src/main/java/net/minecraft/server/EntityLiving.java
|
2019-12-11 01:56:03 +01:00
|
|
|
index 906ca1bfa..e38be6eba 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/EntityLiving.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/EntityLiving.java
|
2019-12-11 01:56:03 +01:00
|
|
|
@@ -1071,6 +1071,7 @@ public abstract class EntityLiving extends Entity {
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
2018-08-26 20:11:49 +02:00
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
|
|
|
|
+ boolean knockbackCancelled = world.paperConfig.disableExplosionKnockback && damagesource.isExplosion() && this instanceof EntityHuman; // Paper - Disable explosion knockback
|
2018-08-26 20:11:49 +02:00
|
|
|
if (flag1) {
|
|
|
|
if (flag) {
|
|
|
|
this.world.broadcastEntityEffect(this, (byte) 29);
|
2019-12-11 01:56:03 +01:00
|
|
|
@@ -1089,6 +1090,7 @@ public abstract class EntityLiving extends Entity {
|
2018-08-26 20:11:49 +02:00
|
|
|
b0 = 2;
|
|
|
|
}
|
2017-05-14 20:05:01 +02:00
|
|
|
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (!knockbackCancelled) // Paper - Disable explosion knockback
|
2018-08-26 20:11:49 +02:00
|
|
|
this.world.broadcastEntityEffect(this, b0);
|
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
|
2019-12-11 01:56:03 +01:00
|
|
|
@@ -1112,6 +1114,8 @@ public abstract class EntityLiving extends Entity {
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
2018-08-26 20:11:49 +02:00
|
|
|
}
|
2016-03-01 00:09:49 +01:00
|
|
|
|
|
|
|
+ if (knockbackCancelled) this.world.broadcastEntityEffect(this, (byte) 2); // Paper - Disable explosion knockback
|
|
|
|
+
|
2018-08-26 20:11:49 +02:00
|
|
|
if (this.getHealth() <= 0.0F) {
|
2019-04-25 08:53:51 +02:00
|
|
|
if (!this.f(damagesource)) {
|
|
|
|
SoundEffect soundeffect = this.getSoundDeath();
|
2016-03-01 00:09:49 +01:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/Explosion.java b/src/main/java/net/minecraft/server/Explosion.java
|
2019-12-11 01:56:03 +01:00
|
|
|
index 069ffb141..8e134ba89 100644
|
2016-03-01 00:09:49 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/Explosion.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/Explosion.java
|
2019-12-11 01:56:03 +01:00
|
|
|
@@ -193,14 +193,14 @@ public class Explosion {
|
2016-11-17 03:23:38 +01:00
|
|
|
double d14 = d13;
|
2016-03-01 00:09:49 +01:00
|
|
|
|
|
|
|
if (entity instanceof EntityLiving) {
|
|
|
|
- d14 = EnchantmentProtection.a((EntityLiving) entity, d13);
|
|
|
|
+ d14 = entity instanceof EntityHuman && world.paperConfig.disableExplosionKnockback ? 0 : EnchantmentProtection.a((EntityLiving) entity, d13); // Paper - Disable explosion knockback
|
|
|
|
}
|
|
|
|
|
2019-04-25 08:53:51 +02:00
|
|
|
entity.setMot(entity.getMot().add(d8 * d14, d9 * d14, d10 * d14));
|
2016-03-01 00:09:49 +01:00
|
|
|
if (entity instanceof EntityHuman) {
|
|
|
|
EntityHuman entityhuman = (EntityHuman) entity;
|
|
|
|
|
2019-04-25 08:53:51 +02:00
|
|
|
- if (!entityhuman.isSpectator() && (!entityhuman.isCreative() || !entityhuman.abilities.isFlying)) {
|
|
|
|
+ if (!entityhuman.isSpectator() && (!entityhuman.isCreative() && !world.paperConfig.disableExplosionKnockback || !entityhuman.abilities.isFlying)) { // Paper - Disable explosion knockback
|
2018-07-15 03:53:17 +02:00
|
|
|
this.l.put(entityhuman, new Vec3D(d8 * d13, d9 * d13, d10 * d13));
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
--
|
2019-12-11 01:56:03 +01:00
|
|
|
2.24.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|