NOT FINISHED! 1.13-pre7 - even more patches!
Patches, patches everywhere!
This commit is contained in:
@@ -12,46 +12,25 @@ This then triggers async chunk loads!
|
||||
What in the hell were you thinking?
|
||||
|
||||
diff --git a/src/main/java/net/minecraft/server/BlockBeacon.java b/src/main/java/net/minecraft/server/BlockBeacon.java
|
||||
index f07ac0186..21075974d 100644
|
||||
index 1181d45fa..d081166d8 100644
|
||||
--- a/src/main/java/net/minecraft/server/BlockBeacon.java
|
||||
+++ b/src/main/java/net/minecraft/server/BlockBeacon.java
|
||||
@@ -0,0 +0,0 @@ public class BlockBeacon extends BlockTileEntity {
|
||||
}
|
||||
|
||||
public static void c(final World world, final BlockPosition blockposition) {
|
||||
- HttpUtilities.a.submit(new Runnable() {
|
||||
- public void run() {
|
||||
+ /*HttpUtilities.a.submit(new Runnable() {
|
||||
+ public void run() {*/ // Paper
|
||||
Chunk chunk = world.getChunkAtWorldCoords(blockposition);
|
||||
public static void a(World world, BlockPosition blockposition) {
|
||||
- HttpUtilities.a.submit(() -> {
|
||||
+ //HttpUtilities.a.submit(() -> { // Paper
|
||||
Chunk chunk = world.getChunkAtWorldCoords(blockposition);
|
||||
|
||||
for (int i = blockposition.getY() - 1; i >= 0; --i) {
|
||||
for (int i = blockposition.getY() - 1; i >= 0; --i) {
|
||||
@@ -0,0 +0,0 @@ public class BlockBeacon extends BlockTileEntity {
|
||||
IBlockData iblockdata = world.getType(blockposition1);
|
||||
|
||||
if (iblockdata.getBlock() == Blocks.BEACON) {
|
||||
- ((WorldServer) world).postToMainThread(new Runnable() {
|
||||
- public void run() {
|
||||
+ /*((WorldServer) world).postToMainThread(new Runnable() {
|
||||
+ public void run() {*/ // Paper
|
||||
TileEntity tileentity = world.getTileEntity(blockposition);
|
||||
|
||||
if (tileentity instanceof TileEntityBeacon) {
|
||||
@@ -0,0 +0,0 @@ public class BlockBeacon extends BlockTileEntity {
|
||||
world.playBlockAction(blockposition, Blocks.BEACON, 1, 0);
|
||||
}
|
||||
|
||||
- }
|
||||
- });
|
||||
+ /*}
|
||||
+ });*/ // Paper
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
- }
|
||||
}
|
||||
-
|
||||
- });
|
||||
+ /*}
|
||||
+ });*/ // Paper
|
||||
+ // }); // Paper
|
||||
}
|
||||
}
|
||||
--
|
||||
Reference in New Issue
Block a user