Skip to content

Commit c2e18c6

Browse files
committed
fixup diffs
1 parent f1424fb commit c2e18c6

File tree

2 files changed

+2
-13
lines changed

2 files changed

+2
-13
lines changed

paper-server/patches/sources/net/minecraft/server/commands/GiveCommand.java.patch

-9
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,6 @@
88
int maxStackSize = itemStack.getMaxStackSize();
99
int i = maxStackSize * 100;
1010
if (count > i) {
11-
@@ -66,7 +_,7 @@
12-
ItemStack itemStack1 = item.createItemStack(min, false);
13-
boolean flag = serverPlayer.getInventory().add(itemStack1);
14-
if (flag && itemStack1.isEmpty()) {
15-
- ItemEntity itemEntity = serverPlayer.drop(itemStack, false);
16-
+ ItemEntity itemEntity = serverPlayer.drop(itemStack, false, false);
17-
if (itemEntity != null) {
18-
itemEntity.makeFakeItem();
19-
}
2011
@@ -95,11 +_,11 @@
2112

2213
if (targets.size() == 1) {

paper-server/patches/sources/net/minecraft/world/inventory/HorseInventoryMenu.java.patch

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,9 @@
11
--- a/net/minecraft/world/inventory/HorseInventoryMenu.java
22
+++ b/net/minecraft/world/inventory/HorseInventoryMenu.java
3-
@@ -18,10 +_,24 @@
4-
private final AbstractHorse horse;
3+
@@ -19,9 +_,23 @@
54
public static final int SLOT_SADDLE = 0;
65
public static final int SLOT_BODY_ARMOR = 1;
7-
- public static final int SLOT_HORSE_INVENTORY_START = 2;
8-
+ private static final int SLOT_HORSE_INVENTORY_START = 2;
6+
public static final int SLOT_HORSE_INVENTORY_START = 2;
97
+ // CraftBukkit start
108
+ org.bukkit.craftbukkit.inventory.CraftInventoryView bukkitEntity;
119
+ Inventory player;

0 commit comments

Comments
 (0)