Paper/Spigot-Server-Patches/0318-Don-t-recheck-type-after-setting-a-block.patch

34 lines
1.3 KiB
Diff
Raw Normal View History

From c595e875930c977f0a9f09219edaababa90bb387 Mon Sep 17 00:00:00 2001
From: Aikar <aikar@aikar.co>
Date: Fri, 28 Sep 2018 22:27:33 -0400
Subject: [PATCH] Don't recheck type after setting a block
The server does a "Did my update succeed" check after setting
a blocks data to a chunk.
However, writes can not fail outside of a hard error or a
a race condition from multiple threads writing, which is
not something that should ever occur on the server.
So this check is pointless, as if it did occur, the server would
be having data corruption issues anyways.
This provides a small boost to all setType calls.
diff --git a/src/main/java/net/minecraft/server/Chunk.java b/src/main/java/net/minecraft/server/Chunk.java
index 2b4ad100e0..4d96e4fb12 100644
--- a/src/main/java/net/minecraft/server/Chunk.java
+++ b/src/main/java/net/minecraft/server/Chunk.java
2019-05-14 04:20:58 +02:00
@@ -339,7 +339,7 @@ public class Chunk implements IChunkAccess {
2019-05-05 10:33:44 +02:00
this.world.removeTileEntity(blockposition);
}
- if (chunksection.getType(i, j & 15, k).getBlock() != block) {
+ if (false && chunksection.getType(i, j & 15, k).getBlock() != block) { // Paper - don't need to recheck this - this would only fail due to non main thread writes which are not supported
return null;
} else {
2019-05-05 10:33:44 +02:00
TileEntity tileentity;
--
2019-05-05 13:32:20 +02:00
2.21.0