2021-06-14 18:58:00 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2022-09-26 10:02:51 +02:00
|
|
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
2021-06-14 18:58:00 +02:00
|
|
|
Date: Sat, 25 Apr 2020 17:10:55 -0700
|
|
|
|
Subject: [PATCH] Reduce blockpos allocation from pathfinding
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/pathfinder/WalkNodeEvaluator.java b/src/main/java/net/minecraft/world/level/pathfinder/WalkNodeEvaluator.java
|
2024-01-23 15:43:48 +01:00
|
|
|
index dbb6a7d950b1a6f58a845b4d399ead6eb6d4fe14..70c7c735fdd0c1b66243915622e47eab8a57e7cc 100644
|
2021-06-14 18:58:00 +02:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/pathfinder/WalkNodeEvaluator.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/pathfinder/WalkNodeEvaluator.java
|
2023-12-06 04:00:14 +01:00
|
|
|
@@ -479,7 +479,7 @@ public class WalkNodeEvaluator extends NodeEvaluator {
|
2021-06-14 18:58:00 +02:00
|
|
|
return BlockPathTypes.DANGER_FIRE;
|
|
|
|
}
|
|
|
|
|
|
|
|
- if (world.getFluidState(pos).is(FluidTags.WATER)) {
|
2024-01-20 12:50:16 +01:00
|
|
|
+ if (blockState.getFluidState().is(FluidTags.WATER)) { // Paper - Perf: Reduce blockpos allocation from pathfinding
|
2021-06-14 18:58:00 +02:00
|
|
|
return BlockPathTypes.WATER_BORDER;
|
|
|
|
}
|
2023-06-08 01:44:11 +02:00
|
|
|
|
2023-12-06 04:00:14 +01:00
|
|
|
@@ -510,7 +510,7 @@ public class WalkNodeEvaluator extends NodeEvaluator {
|
2023-03-14 21:25:13 +01:00
|
|
|
} else if (blockState.is(Blocks.COCOA)) {
|
|
|
|
return BlockPathTypes.COCOA;
|
2023-06-08 01:44:11 +02:00
|
|
|
} else if (!blockState.is(Blocks.WITHER_ROSE) && !blockState.is(Blocks.POINTED_DRIPSTONE)) {
|
2023-03-14 21:25:13 +01:00
|
|
|
- FluidState fluidState = world.getFluidState(pos);
|
2024-01-20 12:50:16 +01:00
|
|
|
+ FluidState fluidState = blockState.getFluidState(); // Paper - Perf: Reduce blockpos allocation from pathfinding
|
2023-03-14 21:25:13 +01:00
|
|
|
if (fluidState.is(FluidTags.LAVA)) {
|
|
|
|
return BlockPathTypes.LAVA;
|
|
|
|
} else if (isBurningBlock(blockState)) {
|