mirror of
https://github.com/PaperMC/Paper.git
synced 2024-12-28 23:38:25 +01:00
e7f3ca4505
Allows us much greater control over the Spigot portion of the code and makes us more "proper" Credit to @Dmck2b for originally passing the idea along a while back
24 lines
No EOL
908 B
Diff
24 lines
No EOL
908 B
Diff
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 {
|
|
}
|
|
|
|
if (!world.isStatic) {
|
|
+ // Spigot Start
|
|
+ if ( !Blocks.SKULL.canPlace( world, i, j, k ) )
|
|
+ {
|
|
+ return false;
|
|
+ }
|
|
+ // Spigot End
|
|
world.setTypeAndData(i, j, k, Blocks.SKULL, l, 2);
|
|
int i1 = 0;
|
|
|
|
--
|