aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/server/0872-Ensure-entity-passenger-world-matches-ridden-entity.patch
diff options
context:
space:
mode:
authorNassim Jahnke <[email protected]>2022-09-12 13:31:45 +0200
committerNassim Jahnke <[email protected]>2022-09-12 13:31:45 +0200
commitef0e5a642d33ac62f070c45a61cb42647b2744cd (patch)
tree70dff1b36e6d4306f059b3c8e335527af00adf73 /patches/server/0872-Ensure-entity-passenger-world-matches-ridden-entity.patch
parent51183af967aafb3d57dc19421da1bcb0aea9d3d2 (diff)
downloadPaper-ef0e5a642d33ac62f070c45a61cb42647b2744cd.tar.gz
Paper-ef0e5a642d33ac62f070c45a61cb42647b2744cd.zip
Updated Upstream (Bukkit/CraftBukkit/Spigot)
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 9ae3f10f SPIGOT-3842: Add Player#fireworkBoost() and expand Firework API 48c0c547 PR-786: Add methods to get sounds from entities CraftBukkit Changes: 5cc9c022a SPIGOT-7152: Handle hand item changing during air interact event 4ffa1acf6 SPIGOT-7154: Players get kicked when interacting with a conversation 4daa21123 SPIGOT-3842: Add Player#fireworkBoost() and expand Firework API e5d6a9bbf PR-1100: Add methods to get sounds from entities b7e9f1c8b SPIGOT-7146: Reduce use of Material switch in ItemMeta Spigot Changes: 4c157bb4 Rebuild patches
Diffstat (limited to 'patches/server/0872-Ensure-entity-passenger-world-matches-ridden-entity.patch')
-rw-r--r--patches/server/0872-Ensure-entity-passenger-world-matches-ridden-entity.patch24
1 files changed, 24 insertions, 0 deletions
diff --git a/patches/server/0872-Ensure-entity-passenger-world-matches-ridden-entity.patch b/patches/server/0872-Ensure-entity-passenger-world-matches-ridden-entity.patch
new file mode 100644
index 0000000000..16d39906af
--- /dev/null
+++ b/patches/server/0872-Ensure-entity-passenger-world-matches-ridden-entity.patch
@@ -0,0 +1,24 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: Spottedleaf <[email protected]>
+Date: Thu, 31 Mar 2022 05:11:37 -0700
+Subject: [PATCH] Ensure entity passenger world matches ridden entity
+
+Bad plugins doing this would cause some obvious problems...
+
+diff --git a/src/main/java/net/minecraft/world/entity/Entity.java b/src/main/java/net/minecraft/world/entity/Entity.java
+index f1e471fee49d0213a97251be1b6793d5fb2165f2..a0c84b3fc264ef25ef1bcdeba482ac23461411f3 100644
+--- a/src/main/java/net/minecraft/world/entity/Entity.java
++++ b/src/main/java/net/minecraft/world/entity/Entity.java
+@@ -2684,6 +2684,12 @@ public abstract class Entity implements Nameable, EntityAccess, CommandSource {
+ }
+
+ protected boolean addPassenger(Entity entity) { // CraftBukkit
++ // Paper start
++ if (entity.level != this.level) {
++ LOGGER.error("Entity passenger world must match, cannot add " + entity + " as passenger to " + this, new Throwable());
++ return false;
++ }
++ // Paper end
+ if (entity == this) throw new IllegalArgumentException("Entities cannot become a passenger of themselves"); // Paper - issue 572
+ if (entity.getVehicle() != this) {
+ throw new IllegalStateException("Use x.startRiding(y), not y.addPassenger(x)");