You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: build-data/paper.at
+4-2
Original file line number
Diff line number
Diff line change
@@ -15,7 +15,8 @@ public net.minecraft.commands.CommandSourceStack source
15
15
public net.minecraft.commands.arguments.DimensionArgument ERROR_INVALID_VALUE
16
16
public net.minecraft.commands.arguments.blocks.BlockInput tag
17
17
public net.minecraft.core.MappedRegistry validateWrite(Lnet/minecraft/resources/ResourceKey;)V
18
-
public net.minecraft.nbt.ListTag <init>(Ljava/util/List;B)V
18
+
public net.minecraft.nbt.ListTag <init>(Ljava/util/List;)V
19
+
public net.minecraft.nbt.ListTag identifyRawElementType()B
19
20
public net.minecraft.nbt.TagParser readArrayTag()Lnet/minecraft/nbt/Tag;
20
21
public net.minecraft.nbt.TagParser type(Ljava/lang/String;)Lnet/minecraft/nbt/Tag;
21
22
public net.minecraft.network.Connection address
@@ -39,7 +40,7 @@ public net.minecraft.network.protocol.game.ServerboundMovePlayerPacket yRot
39
40
public net.minecraft.network.protocol.game.ServerboundMovePlayerPacket z
40
41
public net.minecraft.resources.RegistryOps lookupProvider
41
42
public net.minecraft.resources.RegistryOps$HolderLookupAdapter
42
-
public net.minecraft.server.Main forceUpgrade(Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lcom/mojang/datafixers/DataFixer;ZLjava/util/function/BooleanSupplier;Lnet/minecraft/core/RegistryAccess;Z)V
43
+
public net/minecraft/server/Main forceUpgrade(Lnet/minecraft/world/level/storage/LevelStorageSource$LevelStorageAccess;Lnet/minecraft/world/level/storage/WorldData;Lcom/mojang/datafixers/DataFixer;ZLjava/util/function/BooleanSupplier;Lnet/minecraft/core/RegistryAccess;Z)V
43
44
public net.minecraft.server.MinecraftServer LOGGER
44
45
public net.minecraft.server.MinecraftServer doRunTask(Lnet/minecraft/server/TickTask;)V
45
46
public net.minecraft.server.MinecraftServer executor
@@ -94,6 +95,7 @@ public net.minecraft.server.level.ServerLevel serverLevelData
94
95
public net.minecraft.server.level.ServerPlayer completeUsingItem()V
95
96
public net.minecraft.server.level.ServerPlayer containerSynchronizer
96
97
public net.minecraft.server.level.ServerPlayer findRespawnAndUseSpawnBlock(Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/core/BlockPos;FZZ)Ljava/util/Optional;
98
+
public net.minecraft.server.level.ServerPlayer findRespawnAndUseSpawnBlock(Lnet/minecraft/server/level/ServerLevel;Lnet/minecraft/server/level/ServerPlayer$RespawnConfig;Z)Ljava/util/Optional;
97
99
public net.minecraft.server.level.ServerPlayer initMenu(Lnet/minecraft/world/inventory/AbstractContainerMenu;)V
98
100
public net.minecraft.server.level.ServerPlayer isChangingDimension
99
101
public net.minecraft.server.level.ServerPlayer language
Copy file name to clipboardexpand all lines: paper-server/patches/sources/net/minecraft/server/level/ServerPlayer.java.patch
+8-6
Original file line number
Diff line number
Diff line change
@@ -355,13 +355,13 @@
355
355
+ if (!keepInventory) {
356
356
+ for (ItemStack item : this.getInventory().getContents()) {
357
357
+ if (!item.isEmpty() && !EnchantmentHelper.has(item, net.minecraft.world.item.enchantment.EnchantmentEffectComponents.PREVENT_EQUIPMENT_DROP)) {
358
-
+ loot.add(new DefaultDrop(item, stack -> this.drop(stack, true, false, false))); // Paper - Restore vanilla drops behavior; drop function taken from Inventory#dropAll (don't fire drop event)
358
+
+ loot.add(new DefaultDrop(item, stack -> this.drop(stack, true, false, false, null))); // Paper - Restore vanilla drops behavior; drop function taken from Inventory#dropAll (don't fire drop event)
359
359
+ }
360
360
+ }
361
361
+ }
362
362
+ if (this.shouldDropLoot() && this.serverLevel().getGameRules().getBoolean(GameRules.RULE_DOMOBLOOT)) { // Paper - fix player loottables running when mob loot gamerule is false
0 commit comments