mirror of
https://hub.spigotmc.org/stash/scm/spigot/craftbukkit.git
synced 2024-11-25 15:06:14 +00:00
15 lines
575 B
Diff
15 lines
575 B
Diff
--- a/net/minecraft/world/level/block/BlockGrassPath.java
|
|
+++ b/net/minecraft/world/level/block/BlockGrassPath.java
|
|
@@ -51,6 +51,11 @@
|
|
|
|
@Override
|
|
protected void tick(IBlockData iblockdata, WorldServer worldserver, BlockPosition blockposition, RandomSource randomsource) {
|
|
+ // CraftBukkit start - do not fade if the block is valid here
|
|
+ if (iblockdata.canSurvive(worldserver, blockposition)) {
|
|
+ return;
|
|
+ }
|
|
+ // CraftBukkit end
|
|
BlockSoil.turnToDirt((Entity) null, iblockdata, worldserver, blockposition);
|
|
}
|
|
|