Mirror von
https://github.com/PaperMC/Paper.git
synchronisiert 2024-11-15 04:20:04 +01:00
05466e3b47
Upstream has released updates that appear to apply compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing. Bukkit Changes: d2834556 SPIGOT-4219: Event for PigZombies angering. CraftBukkit Changes:a9c796f1
SPIGOT-4184: Fix furnaces not matching Vanilla smelt or animations195f071e
SPIGOT-4219: Event for PigZombies angering.5e3082c7
SPIGOT-4230: Improve legacy block types
30 Zeilen
960 B
Diff
30 Zeilen
960 B
Diff
From 8f03e0871060fbb45113907da543f4ef32e3fc65 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 0c8f9d37fd..44ed656263 100644
|
|
--- a/src/main/java/net/minecraft/server/BlockSnowBlock.java
|
|
+++ b/src/main/java/net/minecraft/server/BlockSnowBlock.java
|
|
@@ -16,6 +16,8 @@ public class BlockSnowBlock extends Block {
|
|
return 4;
|
|
}
|
|
|
|
+ // Paper start - snow blocks don't need to tick
|
|
+ /*
|
|
public void a(IBlockData iblockdata, World world, BlockPosition blockposition, Random random) {
|
|
if (world.getBrightness(EnumSkyBlock.BLOCK, blockposition) > 11) {
|
|
// CraftBukkit start
|
|
@@ -28,4 +30,6 @@ public class BlockSnowBlock extends Block {
|
|
}
|
|
|
|
}
|
|
+ */
|
|
+ //Paper end
|
|
}
|
|
--
|
|
2.18.0
|
|
|