Paper/CraftBukkit-Patches/0102-Check-Skull-canPlace.patch
2016-03-03 03:46:56 -06:00

27 lines
1 KiB
Diff

From f2216c44f5be2c9cccd99b4f5dbab4ad311352bd 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 2a8c5f0..75cd3f1 100644
--- a/src/main/java/net/minecraft/server/ItemSkull.java
+++ b/src/main/java/net/minecraft/server/ItemSkull.java
@@ -33,6 +33,12 @@ public class ItemSkull extends Item {
if (world.isClientSide) {
return EnumInteractionResult.SUCCESS;
} else {
+ // Spigot Start
+ if ( !Blocks.SKULL.canPlace( world, blockposition ) )
+ {
+ return EnumInteractionResult.FAIL;
+ }
+ // Spigot End
world.setTypeAndData(blockposition, Blocks.SKULL.getBlockData().set(BlockSkull.FACING, enumdirection), 11);
int i = 0;
--
2.5.0