mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-17 13:24:17 -07:00
Fix PlayerDropItemEvent using wrong item
This commit is contained in:
@@ -1,6 +1,14 @@
|
|||||||
--- a/net/minecraft/server/commands/GiveCommand.java
|
--- a/net/minecraft/server/commands/GiveCommand.java
|
||||||
+++ b/net/minecraft/server/commands/GiveCommand.java
|
+++ b/net/minecraft/server/commands/GiveCommand.java
|
||||||
@@ -60,7 +60,7 @@
|
@@ -38,6 +38,7 @@
|
||||||
|
|
||||||
|
private static int giveItem(CommandSourceStack source, ItemInput item, Collection<ServerPlayer> targets, int count) throws CommandSyntaxException {
|
||||||
|
ItemStack itemstack = item.createItemStack(1, false);
|
||||||
|
+ final Component displayName = itemstack.getDisplayName(); // Paper - get display name early
|
||||||
|
int j = itemstack.getMaxStackSize();
|
||||||
|
int k = j * 100;
|
||||||
|
|
||||||
|
@@ -60,7 +61,7 @@
|
||||||
ItemEntity entityitem;
|
ItemEntity entityitem;
|
||||||
|
|
||||||
if (flag && itemstack1.isEmpty()) {
|
if (flag && itemstack1.isEmpty()) {
|
||||||
@@ -9,3 +17,17 @@
|
|||||||
if (entityitem != null) {
|
if (entityitem != null) {
|
||||||
entityitem.makeFakeItem();
|
entityitem.makeFakeItem();
|
||||||
}
|
}
|
||||||
|
@@ -79,11 +80,11 @@
|
||||||
|
|
||||||
|
if (targets.size() == 1) {
|
||||||
|
source.sendSuccess(() -> {
|
||||||
|
- return Component.translatable("commands.give.success.single", count, itemstack.getDisplayName(), ((ServerPlayer) targets.iterator().next()).getDisplayName());
|
||||||
|
+ return Component.translatable("commands.give.success.single", count, displayName, ((ServerPlayer) targets.iterator().next()).getDisplayName()); // Paper - use cached display name
|
||||||
|
}, true);
|
||||||
|
} else {
|
||||||
|
source.sendSuccess(() -> {
|
||||||
|
- return Component.translatable("commands.give.success.single", count, itemstack.getDisplayName(), targets.size());
|
||||||
|
+ return Component.translatable("commands.give.success.single", count, displayName, targets.size()); // Paper - use cached display name
|
||||||
|
}, true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@@ -114,7 +114,7 @@
|
|||||||
@Nullable
|
@Nullable
|
||||||
private Vec3 startingToFallPosition;
|
private Vec3 startingToFallPosition;
|
||||||
@Nullable
|
@Nullable
|
||||||
@@ -258,7 +293,36 @@
|
@@ -258,6 +293,35 @@
|
||||||
private final CommandSource commandSource;
|
private final CommandSource commandSource;
|
||||||
private int containerCounter;
|
private int containerCounter;
|
||||||
public boolean wonGame;
|
public boolean wonGame;
|
||||||
@@ -125,7 +125,7 @@
|
|||||||
+ public boolean queueHealthUpdatePacket;
|
+ public boolean queueHealthUpdatePacket;
|
||||||
+ public net.minecraft.network.protocol.game.ClientboundSetHealthPacket queuedHealthUpdatePacket;
|
+ public net.minecraft.network.protocol.game.ClientboundSetHealthPacket queuedHealthUpdatePacket;
|
||||||
+ // Paper end - cancellable death event
|
+ // Paper end - cancellable death event
|
||||||
|
+
|
||||||
+ // CraftBukkit start
|
+ // CraftBukkit start
|
||||||
+ public CraftPlayer.TransferCookieConnection transferCookieConnection;
|
+ public CraftPlayer.TransferCookieConnection transferCookieConnection;
|
||||||
+ public String displayName;
|
+ public String displayName;
|
||||||
@@ -147,10 +147,9 @@
|
|||||||
+ public com.destroystokyo.paper.event.entity.PlayerNaturallySpawnCreaturesEvent playerNaturallySpawnedEvent; // Paper - PlayerNaturallySpawnCreaturesEvent
|
+ public com.destroystokyo.paper.event.entity.PlayerNaturallySpawnCreaturesEvent playerNaturallySpawnedEvent; // Paper - PlayerNaturallySpawnCreaturesEvent
|
||||||
+ public @Nullable String clientBrandName = null; // Paper - Brand support
|
+ public @Nullable String clientBrandName = null; // Paper - Brand support
|
||||||
+ public org.bukkit.event.player.PlayerQuitEvent.QuitReason quitReason = null; // Paper - Add API for quit reason; there are a lot of changes to do if we change all methods leading to the event
|
+ public org.bukkit.event.player.PlayerQuitEvent.QuitReason quitReason = null; // Paper - Add API for quit reason; there are a lot of changes to do if we change all methods leading to the event
|
||||||
+
|
|
||||||
public ServerPlayer(MinecraftServer server, ServerLevel world, GameProfile profile, ClientInformation clientOptions) {
|
public ServerPlayer(MinecraftServer server, ServerLevel world, GameProfile profile, ClientInformation clientOptions) {
|
||||||
super(world, world.getSharedSpawnPos(), world.getSharedSpawnAngle(), profile);
|
super(world, world.getSharedSpawnPos(), world.getSharedSpawnAngle(), profile);
|
||||||
this.chatVisibility = ChatVisiblity.FULL;
|
|
||||||
@@ -266,7 +330,7 @@
|
@@ -266,7 +330,7 @@
|
||||||
this.canChatColor = true;
|
this.canChatColor = true;
|
||||||
this.lastActionTime = Util.getMillis();
|
this.lastActionTime = Util.getMillis();
|
||||||
@@ -914,7 +913,7 @@
|
|||||||
this.connection.resetPosition();
|
this.connection.resetPosition();
|
||||||
worldserver.addDuringTeleport(this);
|
worldserver.addDuringTeleport(this);
|
||||||
gameprofilerfiller.pop();
|
gameprofilerfiller.pop();
|
||||||
@@ -1215,10 +1605,33 @@
|
@@ -1215,12 +1605,35 @@
|
||||||
this.lastSentExp = -1;
|
this.lastSentExp = -1;
|
||||||
this.lastSentHealth = -1.0F;
|
this.lastSentHealth = -1.0F;
|
||||||
this.lastSentFood = -1;
|
this.lastSentFood = -1;
|
||||||
@@ -930,24 +929,26 @@
|
|||||||
+ // Paper end - Reset shield blocking on dimension change
|
+ // Paper end - Reset shield blocking on dimension change
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
+ }
|
}
|
||||||
+ }
|
}
|
||||||
+
|
|
||||||
+ // CraftBukkit start
|
+ // CraftBukkit start
|
||||||
+ @Override
|
@Override
|
||||||
+ public CraftPortalEvent callPortalEvent(Entity entity, Location exit, TeleportCause cause, int searchRadius, int creationRadius) {
|
+ public CraftPortalEvent callPortalEvent(Entity entity, Location exit, TeleportCause cause, int searchRadius, int creationRadius) {
|
||||||
+ Location enter = this.getBukkitEntity().getLocation();
|
+ Location enter = this.getBukkitEntity().getLocation();
|
||||||
+ PlayerPortalEvent event = new PlayerPortalEvent(this.getBukkitEntity(), enter, exit, cause, searchRadius, true, creationRadius);
|
+ PlayerPortalEvent event = new PlayerPortalEvent(this.getBukkitEntity(), enter, exit, cause, searchRadius, true, creationRadius);
|
||||||
+ Bukkit.getServer().getPluginManager().callEvent(event);
|
+ Bukkit.getServer().getPluginManager().callEvent(event);
|
||||||
+ if (event.isCancelled() || event.getTo() == null || event.getTo().getWorld() == null) {
|
+ if (event.isCancelled() || event.getTo() == null || event.getTo().getWorld() == null) {
|
||||||
+ return null;
|
+ return null;
|
||||||
}
|
+ }
|
||||||
+ return new CraftPortalEvent(event);
|
+ return new CraftPortalEvent(event);
|
||||||
}
|
+ }
|
||||||
+ // CraftBukkit end
|
+ // CraftBukkit end
|
||||||
|
+
|
||||||
@Override
|
+ @Override
|
||||||
public void forceSetRotation(float yaw, float pitch) {
|
public void forceSetRotation(float yaw, float pitch) {
|
||||||
|
this.connection.send(new ClientboundPlayerRotationPacket(yaw, pitch));
|
||||||
|
}
|
||||||
@@ -1228,13 +1641,21 @@
|
@@ -1228,13 +1641,21 @@
|
||||||
public void triggerDimensionChangeTriggers(ServerLevel origin) {
|
public void triggerDimensionChangeTriggers(ServerLevel origin) {
|
||||||
ResourceKey<Level> resourcekey = origin.dimension();
|
ResourceKey<Level> resourcekey = origin.dimension();
|
||||||
@@ -1574,11 +1575,23 @@
|
|||||||
+ if (flag1) {
|
+ if (flag1) {
|
||||||
if (!itemstack1.isEmpty()) {
|
if (!itemstack1.isEmpty()) {
|
||||||
- this.awardStat(Stats.ITEM_DROPPED.get(itemstack1.getItem()), stack.getCount());
|
- this.awardStat(Stats.ITEM_DROPPED.get(itemstack1.getItem()), stack.getCount());
|
||||||
+ this.awardStat(Stats.ITEM_DROPPED.get(itemstack1.getItem()), itemstack.getCount());
|
+ this.awardStat(Stats.ITEM_DROPPED.get(itemstack1.getItem()), itemstack1.getCount()); // Paper - Fix PlayerDropItemEvent using wrong item
|
||||||
}
|
}
|
||||||
|
|
||||||
this.awardStat(Stats.DROP);
|
this.awardStat(Stats.DROP);
|
||||||
@@ -2166,6 +2791,16 @@
|
@@ -2115,6 +2740,11 @@
|
||||||
|
return null;
|
||||||
|
} else {
|
||||||
|
double d0 = this.getEyeY() - 0.30000001192092896D;
|
||||||
|
+ // Paper start
|
||||||
|
+ ItemStack tmp = stack.copy();
|
||||||
|
+ stack.setCount(0);
|
||||||
|
+ stack = tmp;
|
||||||
|
+ // Paper end
|
||||||
|
ItemEntity entityitem = new ItemEntity(this.level(), this.getX(), d0, this.getZ(), stack);
|
||||||
|
|
||||||
|
entityitem.setPickUpDelay(40);
|
||||||
|
@@ -2166,6 +2796,16 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
public void loadGameTypes(@Nullable CompoundTag nbt) {
|
public void loadGameTypes(@Nullable CompoundTag nbt) {
|
||||||
@@ -1595,7 +1608,7 @@
|
|||||||
this.gameMode.setGameModeForPlayer(this.calculateGameModeForNewPlayer(ServerPlayer.readPlayerMode(nbt, "playerGameType")), ServerPlayer.readPlayerMode(nbt, "previousPlayerGameType"));
|
this.gameMode.setGameModeForPlayer(this.calculateGameModeForNewPlayer(ServerPlayer.readPlayerMode(nbt, "playerGameType")), ServerPlayer.readPlayerMode(nbt, "previousPlayerGameType"));
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -2275,9 +2910,15 @@
|
@@ -2275,9 +2915,15 @@
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void stopRiding() {
|
public void stopRiding() {
|
||||||
@@ -1612,7 +1625,7 @@
|
|||||||
if (entity instanceof LivingEntity entityliving) {
|
if (entity instanceof LivingEntity entityliving) {
|
||||||
Iterator iterator = entityliving.getActiveEffects().iterator();
|
Iterator iterator = entityliving.getActiveEffects().iterator();
|
||||||
|
|
||||||
@@ -2375,10 +3016,12 @@
|
@@ -2375,10 +3021,12 @@
|
||||||
return TicketType.ENDER_PEARL.timeout();
|
return TicketType.ENDER_PEARL.timeout();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1628,7 +1641,7 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static float calculateLookAtYaw(Vec3 respawnPos, BlockPos currentPos) {
|
private static float calculateLookAtYaw(Vec3 respawnPos, BlockPos currentPos) {
|
||||||
@@ -2387,4 +3030,147 @@
|
@@ -2387,4 +3035,147 @@
|
||||||
return (float) Mth.wrapDegrees(Mth.atan2(vec3d1.z, vec3d1.x) * 57.2957763671875D - 90.0D);
|
return (float) Mth.wrapDegrees(Mth.atan2(vec3d1.z, vec3d1.x) * 57.2957763671875D - 90.0D);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user