2021-03-15 23:00:00 +01:00
|
|
|
--- a/net/minecraft/world/level/block/BlockGrassPath.java
|
|
|
|
+++ b/net/minecraft/world/level/block/BlockGrassPath.java
|
2023-12-05 17:40:00 +01:00
|
|
|
@@ -51,6 +51,11 @@
|
2020-09-08 04:17:23 +02:00
|
|
|
|
|
|
|
@Override
|
2022-06-07 18:00:00 +02:00
|
|
|
public void tick(IBlockData iblockdata, WorldServer worldserver, BlockPosition blockposition, RandomSource randomsource) {
|
2020-09-08 04:17:23 +02:00
|
|
|
+ // CraftBukkit start - do not fade if the block is valid here
|
2021-11-21 23:00:00 +01:00
|
|
|
+ if (iblockdata.canSurvive(worldserver, blockposition)) {
|
2020-09-08 04:17:23 +02:00
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // CraftBukkit end
|
2023-03-14 17:30:00 +01:00
|
|
|
BlockSoil.turnToDirt((Entity) null, iblockdata, worldserver, blockposition);
|
2020-09-08 04:17:23 +02:00
|
|
|
}
|
|
|
|
|