diff options
author | Jake Potrebic <[email protected]> | 2024-05-26 12:51:15 -0700 |
---|---|---|
committer | GitHub <[email protected]> | 2024-05-26 12:51:15 -0700 |
commit | 9774a52d110f29e4be956d1aad7bb4c99b50d21d (patch) | |
tree | 87b4d46a37670e8fadfae8bc4924fcf633616457 /patches/server/0808-Expose-pre-collision-moving-velocity-to-VehicleBlock.patch | |
parent | ca50b87947e0aca6017a7d4b242d892b930ae2c2 (diff) | |
download | Paper-9774a52d110f29e4be956d1aad7bb4c99b50d21d.tar.gz Paper-9774a52d110f29e4be956d1aad7bb4c99b50d21d.zip |
fix and cleanup loot table patches (#10100)
* fix and cleanup loot table patches
* fixes
Diffstat (limited to 'patches/server/0808-Expose-pre-collision-moving-velocity-to-VehicleBlock.patch')
-rw-r--r-- | patches/server/0808-Expose-pre-collision-moving-velocity-to-VehicleBlock.patch | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/patches/server/0808-Expose-pre-collision-moving-velocity-to-VehicleBlock.patch b/patches/server/0808-Expose-pre-collision-moving-velocity-to-VehicleBlock.patch index 8245b3b968..7a2771679a 100644 --- a/patches/server/0808-Expose-pre-collision-moving-velocity-to-VehicleBlock.patch +++ b/patches/server/0808-Expose-pre-collision-moving-velocity-to-VehicleBlock.patch @@ -6,10 +6,10 @@ Subject: [PATCH] Expose pre-collision moving velocity to diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java -index f256bd908a9683085fa47d2a84cbdee78a7ba20b..d074b9f859f6ed9ce0137c8e238de188c290fa4d 100644 +index e6b61e4d5774532e67932b872bb84d7e91589fc6..1c370fd90427ea3ec9bcaece45775b1aa7ba9ee7 100644 --- a/src/main/java/net/minecraft/world/entity/Entity.java +++ b/src/main/java/net/minecraft/world/entity/Entity.java -@@ -968,6 +968,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess +@@ -967,6 +967,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess } public void move(MoverType movementType, Vec3 movement) { @@ -17,7 +17,7 @@ index f256bd908a9683085fa47d2a84cbdee78a7ba20b..d074b9f859f6ed9ce0137c8e238de188 if (this.noPhysics) { this.setPos(this.getX() + movement.x, this.getY() + movement.y, this.getZ() + movement.z); } else { -@@ -1052,7 +1053,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess +@@ -1051,7 +1052,7 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess } if (!bl.getType().isAir()) { |