2017-05-14 20:05:01 +02:00
|
|
|
From 7197a213cc0ee3f96c122d16a7f3c9fc46cc75d6 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
|
2017-03-25 04:18:58 +01:00
|
|
|
index a197af84f..2217f680c 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
|
2017-03-25 04:18:58 +01:00
|
|
|
@@ -199,4 +199,9 @@ public class PaperWorldConfig {
|
2016-03-01 00:09:49 +01:00
|
|
|
lavaFlowSpeedNormal = getInt("lava-flow-speed.normal", 30);
|
|
|
|
lavaFlowSpeedNether = getInt("lava-flow-speed.nether", 10);
|
|
|
|
}
|
|
|
|
+
|
|
|
|
+ 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
|
2017-05-14 20:05:01 +02:00
|
|
|
index c9bf14d77..64876f134 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
|
2017-05-14 20:05:01 +02:00
|
|
|
@@ -900,6 +900,7 @@ public abstract class EntityLiving extends Entity {
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ boolean knockbackCancelled = world.paperConfig.disableExplosionKnockback && damagesource.isExplosion() && this instanceof EntityHuman; // Paper - Disable explosion knockback
|
|
|
|
if (flag1) {
|
|
|
|
if (flag) {
|
|
|
|
this.world.broadcastEntityEffect(this, (byte) 29);
|
2017-05-14 20:05:01 +02:00
|
|
|
@@ -916,6 +917,7 @@ public abstract class EntityLiving extends Entity {
|
|
|
|
b0 = 2;
|
|
|
|
}
|
|
|
|
|
2016-03-01 00:09:49 +01:00
|
|
|
+ if (!knockbackCancelled) // Paper - Disable explosion knockback
|
2017-05-14 20:05:01 +02:00
|
|
|
this.world.broadcastEntityEffect(this, b0);
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
|
2017-05-14 20:05:01 +02:00
|
|
|
@@ -939,6 +941,8 @@ public abstract class EntityLiving extends Entity {
|
2016-03-01 00:09:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
+ if (knockbackCancelled) this.world.broadcastEntityEffect(this, (byte) 2); // Paper - Disable explosion knockback
|
|
|
|
+
|
|
|
|
if (this.getHealth() <= 0.0F) {
|
2017-05-14 20:05:01 +02:00
|
|
|
if (!this.e(damagesource)) {
|
|
|
|
SoundEffect soundeffect = this.cd();
|
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
|
2017-05-14 20:05:01 +02:00
|
|
|
index 63b70d60c..0d434544d 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
|
2016-11-17 03:23:38 +01:00
|
|
|
@@ -146,7 +146,7 @@ public class Explosion {
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
entity.motX += d8 * d14;
|
2016-11-17 03:23:38 +01:00
|
|
|
@@ -155,7 +155,7 @@ public class Explosion {
|
2016-03-01 00:09:49 +01:00
|
|
|
if (entity instanceof EntityHuman) {
|
|
|
|
EntityHuman entityhuman = (EntityHuman) entity;
|
|
|
|
|
2016-06-09 05:57:14 +02:00
|
|
|
- if (!entityhuman.isSpectator() && (!entityhuman.z() || !entityhuman.abilities.isFlying)) {
|
|
|
|
+ if (!entityhuman.isSpectator() && (!entityhuman.z() && !world.paperConfig.disableExplosionKnockback || !entityhuman.abilities.isFlying)) { // Paper - Disable explosion knockback
|
2016-03-01 00:09:49 +01:00
|
|
|
this.k.put(entityhuman, new Vec3D(d8 * d13, d9 * d13, d10 * d13));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
--
|
2017-05-14 20:05:01 +02:00
|
|
|
2.13.0
|
2016-03-01 00:09:49 +01:00
|
|
|
|