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.
82 lines
3.4 KiB
Diff
82 lines
3.4 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: JRoy <joshroy126@gmail.com>
|
|
Date: Wed, 26 Aug 2020 02:12:31 -0400
|
|
Subject: [PATCH] Add additional open container api to HumanEntity
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java b/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
|
|
index fe050a077782fb023c49710eb2127250d5165484..93644aefd2e6c97eca2735812b2b7b4bd039cfb5 100644
|
|
--- a/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
|
|
+++ b/src/main/java/org/bukkit/craftbukkit/entity/CraftHumanEntity.java
|
|
@@ -461,6 +461,70 @@ public class CraftHumanEntity extends CraftLivingEntity implements HumanEntity {
|
|
return this.getHandle().containerMenu.getBukkitView();
|
|
}
|
|
|
|
+ // Paper start - Add additional containers
|
|
+ @Override
|
|
+ public InventoryView openAnvil(Location location, boolean force) {
|
|
+ return this.openInventory(location, force, Material.ANVIL);
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public InventoryView openCartographyTable(Location location, boolean force) {
|
|
+ return this.openInventory(location, force, Material.CARTOGRAPHY_TABLE);
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public InventoryView openGrindstone(Location location, boolean force) {
|
|
+ return this.openInventory(location, force, Material.GRINDSTONE);
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public InventoryView openLoom(Location location, boolean force) {
|
|
+ return this.openInventory(location, force, Material.LOOM);
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public InventoryView openSmithingTable(Location location, boolean force) {
|
|
+ return this.openInventory(location, force, Material.SMITHING_TABLE);
|
|
+ }
|
|
+
|
|
+ @Override
|
|
+ public InventoryView openStonecutter(Location location, boolean force) {
|
|
+ return this.openInventory(location, force, Material.STONECUTTER);
|
|
+ }
|
|
+
|
|
+ private InventoryView openInventory(Location location, boolean force, Material material) {
|
|
+ org.spigotmc.AsyncCatcher.catchOp("open" + material);
|
|
+ if (location == null) {
|
|
+ location = this.getLocation();
|
|
+ }
|
|
+ if (!force) {
|
|
+ Block block = location.getBlock();
|
|
+ if (block.getType() != material) {
|
|
+ return null;
|
|
+ }
|
|
+ }
|
|
+ net.minecraft.world.level.block.Block block;
|
|
+ if (material == Material.ANVIL) {
|
|
+ block = Blocks.ANVIL;
|
|
+ } else if (material == Material.CARTOGRAPHY_TABLE) {
|
|
+ block = Blocks.CARTOGRAPHY_TABLE;
|
|
+ } else if (material == Material.GRINDSTONE) {
|
|
+ block = Blocks.GRINDSTONE;
|
|
+ } else if (material == Material.LOOM) {
|
|
+ block = Blocks.LOOM;
|
|
+ } else if (material == Material.SMITHING_TABLE) {
|
|
+ block = Blocks.SMITHING_TABLE;
|
|
+ } else if (material == Material.STONECUTTER) {
|
|
+ block = Blocks.STONECUTTER;
|
|
+ } else {
|
|
+ throw new IllegalArgumentException("Unsupported inventory type: " + material);
|
|
+ }
|
|
+ this.getHandle().openMenu(block.getMenuProvider(null, this.getHandle().level(), new BlockPos(location.getBlockX(), location.getBlockY(), location.getBlockZ())));
|
|
+ this.getHandle().containerMenu.checkReachable = !force;
|
|
+ return this.getHandle().containerMenu.getBukkitView();
|
|
+ }
|
|
+ // Paper end
|
|
+
|
|
@Override
|
|
public void closeInventory() {
|
|
// Paper start - Inventory close reason
|