2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: BrodyBeckwith <brody@beckwith.dev>
|
|
|
|
Date: Tue, 14 Jan 2020 17:49:03 -0500
|
|
|
|
Subject: [PATCH] Optimize call to getFluid for explosions
|
|
|
|
|
|
|
|
|
2024-10-23 15:54:09 +02:00
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/ServerExplosion.java b/src/main/java/net/minecraft/world/level/ServerExplosion.java
|
|
|
|
index d1878f597c3d8119e9b248f4fe8af435ce8c9710..d3d74a7f306d88b0d5cd83893b3ee5e750fd4caf 100644
|
|
|
|
--- a/src/main/java/net/minecraft/world/level/ServerExplosion.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/ServerExplosion.java
|
|
|
|
@@ -150,7 +150,7 @@ public class ServerExplosion implements Explosion {
|
2021-06-11 14:02:28 +02:00
|
|
|
for (float f1 = 0.3F; f > 0.0F; f -= 0.22500001F) {
|
2023-03-14 20:54:57 +01:00
|
|
|
BlockPos blockposition = BlockPos.containing(d4, d5, d6);
|
2021-06-11 14:02:28 +02:00
|
|
|
BlockState iblockdata = this.level.getBlockState(blockposition);
|
|
|
|
- FluidState fluid = this.level.getFluidState(blockposition);
|
2024-01-21 12:53:04 +01:00
|
|
|
+ FluidState fluid = iblockdata.getFluidState(); // Paper - Perf: Optimize call to getFluid for explosions
|
2021-06-11 14:02:28 +02:00
|
|
|
|
2021-06-13 21:29:58 +02:00
|
|
|
if (!this.level.isInWorldBounds(blockposition)) {
|
|
|
|
break;
|