geforkt von Mirrors/Paper
Disable ticking of snow blocks
Dieser Commit ist enthalten in:
Ursprung
246294d161
Commit
755861dfb6
36
Spigot-Server-Patches/Disable-ticking-of-snow-blocks.patch
Normale Datei
36
Spigot-Server-Patches/Disable-ticking-of-snow-blocks.patch
Normale Datei
@ -0,0 +1,36 @@
|
||||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
||||
From: killme <killme-git@ibts.me>
|
||||
Date: Tue, 30 Aug 2016 16:39:48 +0200
|
||||
Subject: [PATCH] Disable ticking of snow blocks
|
||||
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/BlockSnowBlock.java b/src/main/java/net/minecraft/server/BlockSnowBlock.java
|
||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||
--- a/src/main/java/net/minecraft/server/BlockSnowBlock.java
|
||||
+++ b/src/main/java/net/minecraft/server/BlockSnowBlock.java
|
||||
@@ -0,0 +0,0 @@ public class BlockSnowBlock extends Block {
|
||||
|
||||
protected BlockSnowBlock() {
|
||||
super(Material.SNOW_BLOCK);
|
||||
- this.a(true);
|
||||
+ // this.a(true); // Paper - snow blocks don't need to tick
|
||||
this.a(CreativeModeTab.b);
|
||||
}
|
||||
|
||||
@@ -0,0 +0,0 @@ public class BlockSnowBlock extends Block {
|
||||
return 4;
|
||||
}
|
||||
|
||||
+ // Paper start - snow blocks don't need to tick
|
||||
+ /*
|
||||
public void b(World world, BlockPosition blockposition, IBlockData iblockdata, Random random) {
|
||||
if (world.b(EnumSkyBlock.BLOCK, blockposition) > 11) {
|
||||
this.b(world, blockposition, world.getType(blockposition), 0);
|
||||
@@ -0,0 +0,0 @@ public class BlockSnowBlock extends Block {
|
||||
}
|
||||
|
||||
}
|
||||
+ */
|
||||
+ //Paper end
|
||||
}
|
||||
--
|
@ -44,6 +44,7 @@ import BlockFalling
|
||||
import BlockFluids
|
||||
import BlockFurnace
|
||||
import BlockIceFrost
|
||||
import BlockSnowBlock
|
||||
import BlockPosition
|
||||
import BlockStateEnum
|
||||
import ChunkCache
|
||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren