2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
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/net/minecraft/world/level/Explosion.java b/src/main/java/net/minecraft/world/level/Explosion.java
|
2024-06-13 19:12:48 +02:00
|
|
|
index 55d66aa8264d5b444a23e2132206bcc9835cfe00..d93ed33d5ae72e9dd3e6cf044ef79e4b9689dc1c 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/Explosion.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/Explosion.java
|
2024-06-13 19:12:48 +02:00
|
|
|
@@ -285,7 +285,7 @@ public class Explosion {
|
2021-06-11 14:02:28 +02:00
|
|
|
if (entity instanceof LivingEntity) {
|
2023-03-14 19:36:39 +01:00
|
|
|
LivingEntity entityliving = (LivingEntity) entity;
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2024-06-13 19:12:48 +02:00
|
|
|
- d13 = d12 * (1.0D - entityliving.getAttributeValue(Attributes.EXPLOSION_KNOCKBACK_RESISTANCE));
|
|
|
|
+ d13 = entity instanceof Player && this.level.paperConfig().environment.disableExplosionKnockback ? 0 : d12 * (1.0D - entityliving.getAttributeValue(Attributes.EXPLOSION_KNOCKBACK_RESISTANCE));
|
2023-03-14 19:36:39 +01:00
|
|
|
} else {
|
2023-12-05 20:39:26 +01:00
|
|
|
d13 = d12;
|
2023-03-14 19:36:39 +01:00
|
|
|
}
|
2024-06-13 19:12:48 +02:00
|
|
|
@@ -310,7 +310,7 @@ public class Explosion {
|
2021-06-11 14:02:28 +02:00
|
|
|
if (entity instanceof Player) {
|
|
|
|
Player entityhuman = (Player) entity;
|
|
|
|
|
2021-06-12 02:57:04 +02:00
|
|
|
- if (!entityhuman.isSpectator() && (!entityhuman.isCreative() || !entityhuman.getAbilities().flying)) {
|
2024-01-24 11:45:17 +01:00
|
|
|
+ if (!entityhuman.isSpectator() && (!entityhuman.isCreative() || !entityhuman.getAbilities().flying) && !level.paperConfig().environment.disableExplosionKnockback) { // Paper - Option to disable explosion knockback
|
2023-03-14 19:36:39 +01:00
|
|
|
this.hitPlayers.put(entityhuman, vec3d1);
|
2021-06-11 14:02:28 +02:00
|
|
|
}
|
|
|
|
}
|