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