Paper/CraftBukkit-Patches/0112-Check-Skull-canPlace.patch

27 lines
991 B
Diff
Raw Normal View History

2015-06-01 11:22:52 +02:00
From 58c3f180077e0acae70e5144bf8a1b4324835a38 Mon Sep 17 00:00:00 2001
2014-11-28 02:17:45 +01:00
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
2015-02-28 12:36:22 +01:00
index e710073..519574b 100644
2014-11-28 02:17:45 +01:00
--- a/src/main/java/net/minecraft/server/ItemSkull.java
+++ b/src/main/java/net/minecraft/server/ItemSkull.java
@@ -35,6 +35,12 @@ public class ItemSkull extends Item {
return false;
} else {
2015-02-28 12:36:22 +01:00
if (!world.isClientSide) {
2014-11-28 02:17:45 +01:00
+ // Spigot Start
+ if ( !Blocks.SKULL.canPlace( world, blockposition ) )
+ {
+ return false;
+ }
+ // Spigot End
world.setTypeAndData(blockposition, Blocks.SKULL.getBlockData().set(BlockSkull.FACING, enumdirection), 3);
int i = 0;
--
2015-05-09 22:23:26 +02:00
2.1.4
2014-11-28 02:17:45 +01:00