3
0
Mirror von https://github.com/PaperMC/Paper.git synchronisiert 2024-12-18 12:30:06 +01:00

Revert "Add delay to hopper even if it doesn't do anything."

This reverts commit f5388e8f94e2cbab76c2255fd872c289e83100a0.
Dieser Commit ist enthalten in:
Travis Watkins 2013-04-27 10:07:02 -05:00
Ursprung 3bbfb41798
Commit 2715e43305

Datei anzeigen

@ -180,11 +180,8 @@ public class TileEntityHopper extends TileEntity implements IHopper {
if (!this.l() && BlockHopper.d(this.p())) { if (!this.l() && BlockHopper.d(this.p())) {
boolean flag = this.u() | suckInItems(this); boolean flag = this.u() | suckInItems(this);
// CraftBukkit start - Move delay out of if block
this.c(8);
if (flag) { if (flag) {
// CraftBukkit end this.c(8);
this.update(); this.update();
return true; return true;
} }