2023-02-28 13:13:59 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Lulu13022002 <41980282+Lulu13022002@users.noreply.github.com>
|
|
|
|
Date: Sat, 18 Feb 2023 16:23:18 +0100
|
|
|
|
Subject: [PATCH] Update the flag when a captured block state is outdated
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/world/level/Level.java b/src/main/java/net/minecraft/world/level/Level.java
|
2024-01-19 17:54:05 +01:00
|
|
|
index 2b0ee0cbc6d204de31027aef9621ac6c026cb22f..6f828ff4c54c2ddd4cc03c0e368afda2521e24dd 100644
|
2023-02-28 13:13:59 +01:00
|
|
|
--- a/src/main/java/net/minecraft/world/level/Level.java
|
|
|
|
+++ b/src/main/java/net/minecraft/world/level/Level.java
|
2023-12-06 17:21:56 +01:00
|
|
|
@@ -923,6 +923,7 @@ public abstract class Level implements LevelAccessor, AutoCloseable {
|
2023-02-28 13:13:59 +01:00
|
|
|
blockstate = CapturedBlockState.getTreeBlockState(this, pos, flags);
|
|
|
|
this.capturedBlockStates.put(pos.immutable(), blockstate);
|
|
|
|
}
|
|
|
|
+ blockstate.setFlag(flags); // Paper - update the flag also
|
|
|
|
blockstate.setData(state);
|
|
|
|
return true;
|
|
|
|
}
|