2018-11-11 22:10:37 +01:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Shane Freeder <theboyetronic@gmail.com>
|
|
|
|
Date: Sun, 11 Nov 2018 21:01:09 +0000
|
|
|
|
Subject: [PATCH] Don't allow digging into unloaded chunks
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/PlayerConnection.java b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2019-07-20 06:01:24 +02:00
|
|
|
index 9eb6982508..45c2777552 100644
|
2018-11-11 22:10:37 +01:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2019-05-05 13:12:32 +02:00
|
|
|
@@ -0,0 +0,0 @@ public class PlayerConnection implements PacketListenerPlayIn {
|
2019-05-28 01:01:45 +02:00
|
|
|
case START_DESTROY_BLOCK:
|
|
|
|
case ABORT_DESTROY_BLOCK:
|
|
|
|
case STOP_DESTROY_BLOCK:
|
2019-07-20 06:01:24 +02:00
|
|
|
+ // Paper start - Don't allow digging in unloaded chunks
|
|
|
|
+ if (this.player.world.getChunkIfLoadedImmediately(blockposition.getX() >> 4, blockposition.getZ() >> 4) == null) {
|
|
|
|
+ return;
|
|
|
|
+ }
|
|
|
|
+ // Paper end - Don't allow digging in unloaded chunks
|
|
|
|
this.player.playerInteractManager.a(blockposition, packetplayinblockdig_enumplayerdigtype, packetplayinblockdig.c(), this.minecraftServer.getMaxBuildHeight());
|
|
|
|
return;
|
|
|
|
default:
|
2018-11-11 22:10:37 +01:00
|
|
|
--
|