2014-08-18 00:15:18 +02:00
|
|
|
From 662acf6926a1381394de4cf4e79540092912c20e Mon Sep 17 00:00:00 2001
|
2014-08-13 23:50:24 +02:00
|
|
|
From: Iceee <andrew@opticgaming.tv>
|
|
|
|
Date: Fri, 11 Jul 2014 01:31:43 -0500
|
|
|
|
Subject: [PATCH] Don't tick chests
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntityChest.java b/src/main/java/net/minecraft/server/TileEntityChest.java
|
2014-08-18 00:15:18 +02:00
|
|
|
index c900caf..19eff35 100644
|
2014-08-13 23:50:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntityChest.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntityChest.java
|
|
|
|
@@ -249,6 +249,8 @@ public class TileEntityChest extends TileEntity implements IInventory {
|
|
|
|
}
|
|
|
|
|
|
|
|
public void h() {
|
2014-08-18 00:15:18 +02:00
|
|
|
+ // PaperSpigot start - Ixnay on the Chest tick-ay
|
2014-08-13 23:50:24 +02:00
|
|
|
+ /*
|
|
|
|
super.h();
|
|
|
|
if (this.world == null) return; // CraftBukkit
|
|
|
|
this.i();
|
2014-08-18 00:15:18 +02:00
|
|
|
@@ -327,6 +329,8 @@ public class TileEntityChest extends TileEntity implements IInventory {
|
2014-08-13 23:50:24 +02:00
|
|
|
this.m = 0.0F;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+ */
|
2014-08-18 00:15:18 +02:00
|
|
|
+ // PaperSpigot end
|
2014-08-13 23:50:24 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public boolean c(int i, int j) {
|
2014-08-18 00:15:18 +02:00
|
|
|
@@ -349,6 +353,26 @@ public class TileEntityChest extends TileEntity implements IInventory {
|
2014-08-13 23:50:24 +02:00
|
|
|
if (this.world == null) return; // CraftBukkit
|
|
|
|
this.world.playBlockAction(this.x, this.y, this.z, this.q(), 1, this.o);
|
|
|
|
|
|
|
|
+ // PaperSpigot start - Move chest open sound handling down here
|
|
|
|
+ this.i();
|
|
|
|
+ double d0;
|
|
|
|
+
|
|
|
|
+ if (this.o > 0 && this.m == 0.0F && this.i == null && this.k == null) {
|
|
|
|
+ double d1 = (double) this.x + 0.5D;
|
|
|
|
+
|
|
|
|
+ d0 = (double) this.z + 0.5D;
|
|
|
|
+ if (this.l != null) {
|
|
|
|
+ d0 += 0.5D;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (this.j != null) {
|
|
|
|
+ d1 += 0.5D;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ this.world.makeSound(d1, (double) this.y + 0.5D, d0, "random.chestopen", 0.5F, this.world.random.nextFloat() * 0.1F + 0.9F);
|
|
|
|
+ }
|
|
|
|
+ // PaperSpigot end
|
|
|
|
+
|
|
|
|
// CraftBukkit start - Call redstone event
|
|
|
|
if (this.q() == Blocks.TRAPPED_CHEST) {
|
|
|
|
int newPower = Math.max(0, Math.min(15, this.o));
|
2014-08-18 00:15:18 +02:00
|
|
|
@@ -371,6 +395,26 @@ public class TileEntityChest extends TileEntity implements IInventory {
|
2014-08-13 23:50:24 +02:00
|
|
|
if (this.world == null) return; // CraftBukkit
|
|
|
|
this.world.playBlockAction(this.x, this.y, this.z, this.q(), 1, this.o);
|
|
|
|
|
|
|
|
+ // PaperSpigot start - Move chest close sound handling down here
|
|
|
|
+ this.i();
|
|
|
|
+ double d0;
|
|
|
|
+
|
|
|
|
+ if (this.o == 0 && this.i == null && this.k == null) {
|
|
|
|
+ d0 = (double) this.x + 0.5D;
|
|
|
|
+ double d2 = (double) this.z + 0.5D;
|
|
|
|
+
|
|
|
|
+ if (this.l != null) {
|
|
|
|
+ d2 += 0.5D;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ if (this.j != null) {
|
|
|
|
+ d0 += 0.5D;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ this.world.makeSound(d0, (double) this.y + 0.5D, d2, "random.chestclosed", 0.5F, this.world.random.nextFloat() * 0.1F + 0.9F);
|
|
|
|
+ }
|
|
|
|
+ // PaperSpigot end
|
|
|
|
+
|
|
|
|
// CraftBukkit start - Call redstone event
|
|
|
|
if (this.q() == Blocks.TRAPPED_CHEST) {
|
|
|
|
int newPower = Math.max(0, Math.min(15, this.o));
|
2014-08-18 00:15:18 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/server/TileEntityEnderChest.java b/src/main/java/net/minecraft/server/TileEntityEnderChest.java
|
|
|
|
index b205ab7..158f2e0 100644
|
|
|
|
--- a/src/main/java/net/minecraft/server/TileEntityEnderChest.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/TileEntityEnderChest.java
|
|
|
|
@@ -10,6 +10,8 @@ public class TileEntityEnderChest extends TileEntity {
|
|
|
|
public TileEntityEnderChest() {}
|
|
|
|
|
|
|
|
public void h() {
|
|
|
|
+ // PaperSpigot start - Ixnay on the EnderChest tick-ay
|
|
|
|
+ /*
|
|
|
|
super.h();
|
|
|
|
if (++this.k % 20 * 4 == 0) {
|
|
|
|
this.world.playBlockAction(this.x, this.y, this.z, Blocks.ENDER_CHEST, 1, this.j);
|
|
|
|
@@ -52,6 +54,8 @@ public class TileEntityEnderChest extends TileEntity {
|
|
|
|
this.a = 0.0F;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
+ */
|
|
|
|
+ // PaperSpigot end
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean c(int i, int j) {
|
|
|
|
@@ -71,11 +75,39 @@ public class TileEntityEnderChest extends TileEntity {
|
|
|
|
public void a() {
|
|
|
|
++this.j;
|
|
|
|
this.world.playBlockAction(this.x, this.y, this.z, Blocks.ENDER_CHEST, 1, this.j);
|
|
|
|
+
|
|
|
|
+ // PaperSpigot start - Move chest open sound handling down to here
|
|
|
|
+ double d0;
|
|
|
|
+
|
|
|
|
+ if (this.j > 0 && this.a == 0.0F) {
|
|
|
|
+ double d1 = (double) this.x + 0.5D;
|
|
|
|
+
|
|
|
|
+ d0 = (double) this.z + 0.5D;
|
|
|
|
+ this.world.makeSound(d1, (double) this.y + 0.5D, d0, "random.chestopen", 0.5F, this.world.random.nextFloat() * 0.1F + 0.9F);
|
|
|
|
+ }
|
|
|
|
+ // PaperSpigot end
|
|
|
|
}
|
|
|
|
|
|
|
|
public void b() {
|
|
|
|
--this.j;
|
|
|
|
this.world.playBlockAction(this.x, this.y, this.z, Blocks.ENDER_CHEST, 1, this.j);
|
|
|
|
+
|
|
|
|
+ // PaperSpigot start - Move chest close sound handling down to here
|
|
|
|
+ float f = 0.1F;
|
|
|
|
+ double d0;
|
|
|
|
+
|
|
|
|
+ if (this.j == 0 && this.a == 0.0F || this.j > 0 && this.a < 1.0F) {
|
|
|
|
+ float f1 = this.a;
|
|
|
|
+ d0 = (double) this.x + 0.5D;
|
|
|
|
+ double d2 = (double) this.z + 0.5D;
|
|
|
|
+
|
|
|
|
+ this.world.makeSound(d0, (double) this.y + 0.5D, d2, "random.chestclosed", 0.5F, this.world.random.nextFloat() * 0.1F + 0.9F);
|
|
|
|
+
|
|
|
|
+ if (this.a < 0.0F) {
|
|
|
|
+ this.a = 0.0F;
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ // PaperSpigot end
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean a(EntityHuman entityhuman) {
|
2014-08-13 23:50:24 +02:00
|
|
|
--
|
|
|
|
1.9.1
|
|
|
|
|