mirror of
https://github.com/PaperMC/Paper.git
synced 2024-11-10 12:50:28 +01:00
32 lines
1.0 KiB
Diff
32 lines
1.0 KiB
Diff
From f1f27585e26230ace9096694bacd455ea0928cf2 Mon Sep 17 00:00:00 2001
|
|
From: Aikar <aikar@aikar.co>
|
|
Date: Wed, 13 Apr 2016 00:30:10 -0400
|
|
Subject: [PATCH] Don't tick Skulls - unused code
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntitySkull.java b/src/main/java/net/minecraft/server/TileEntitySkull.java
|
|
index 369fdfe677..f6a80a00f4 100644
|
|
--- a/src/main/java/net/minecraft/server/TileEntitySkull.java
|
|
+++ b/src/main/java/net/minecraft/server/TileEntitySkull.java
|
|
@@ -24,7 +24,7 @@ import com.mojang.authlib.ProfileLookupCallback;
|
|
import java.util.concurrent.Callable;
|
|
// Spigot end
|
|
|
|
-public class TileEntitySkull extends TileEntity implements ITickable {
|
|
+public class TileEntitySkull extends TileEntity /*implements ITickable*/ { // Paper - remove tickable
|
|
|
|
public GameProfile gameProfile;
|
|
private int b;
|
|
@@ -124,7 +124,7 @@ public class TileEntitySkull extends TileEntity implements ITickable {
|
|
|
|
}
|
|
|
|
- @Override
|
|
+ // Paper - remove override
|
|
public void tick() {
|
|
Block block = this.getBlock().getBlock();
|
|
|
|
--
|
|
2.21.0
|
|
|