mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-01 00:10:32 +01:00
89d51d5f29
Because this exploit has been widely known for years and has not been fixed by Mojang, we decided that it was worth allowing people to toggle it on/off due to how easy it is to make it configurable. It should be noted that this decision does not promise all future exploits will be configurable.
20 lines
1.1 KiB
Diff
20 lines
1.1 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Jake Potrebic <jake.m.potrebic@gmail.com>
|
|
Date: Thu, 1 Dec 2022 12:42:18 -0800
|
|
Subject: [PATCH] remove duplicate animate packet for records
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/item/RecordItem.java b/src/main/java/net/minecraft/world/item/RecordItem.java
|
|
index eca08037fd2742e6e969f91367a0ae053f61a23b..d2ea1b1ea4ac37af09985e1c9da14049c262df7a 100644
|
|
--- a/src/main/java/net/minecraft/world/item/RecordItem.java
|
|
+++ b/src/main/java/net/minecraft/world/item/RecordItem.java
|
|
@@ -46,7 +46,7 @@ public class RecordItem extends Item {
|
|
ItemStack itemstack = context.getItemInHand();
|
|
|
|
if (!world.isClientSide) {
|
|
- if (true) return InteractionResult.SUCCESS; // CraftBukkit - handled in ItemStack
|
|
+ if (true) return InteractionResult.sidedSuccess(world.isClientSide); // CraftBukkit - handled in ItemStack // Paper - fix duplicate animate packet
|
|
Player entityhuman = context.getPlayer();
|
|
BlockEntity tileentity = world.getBlockEntity(blockposition);
|
|
|