PaperMC/CraftBukkit-Patches/0102-Check-Skull-canPlace.patch

24 lines
1.1 KiB
Diff
Raw Normal View History

From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: md_5 <git@md-5.net>
Date: Tue, 15 Apr 2014 10:48:35 +1000
Subject: [PATCH] Check Skull canPlace
diff --git a/src/main/java/net/minecraft/server/ItemSkull.java b/src/main/java/net/minecraft/server/ItemSkull.java
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
--- a/src/main/java/net/minecraft/server/ItemSkull.java
+++ b/src/main/java/net/minecraft/server/ItemSkull.java
@@ -0,0 +0,0 @@ public class ItemSkull extends Item {
2016-02-29 22:33:06 +01:00
if (world.isClientSide) {
return EnumInteractionResult.SUCCESS;
} else {
2014-11-28 02:17:45 +01:00
+ // Spigot Start
+ if ( !Blocks.SKULL.canPlace( world, blockposition ) )
+ {
2016-02-29 22:33:06 +01:00
+ return EnumInteractionResult.FAIL;
2014-11-28 02:17:45 +01:00
+ }
+ // Spigot End
2016-02-29 22:33:06 +01:00
world.setTypeAndData(blockposition, Blocks.SKULL.getBlockData().set(BlockSkull.FACING, enumdirection), 11);
2014-11-28 02:17:45 +01:00
int i = 0;
--