2019-12-12 17:20:43 +01:00
|
|
|
From 77a88c318a96133abb83de1f3713a713e95039bb Mon Sep 17 00:00:00 2001
|
2019-07-20 06:01:24 +02:00
|
|
|
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-12-12 17:20:43 +01:00
|
|
|
index ccad0a601..d263897da 100644
|
2019-07-20 06:01:24 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/PlayerConnection.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/PlayerConnection.java
|
2019-12-12 17:20:43 +01:00
|
|
|
@@ -1271,6 +1271,11 @@ public class PlayerConnection implements PacketListenerPlayIn {
|
2019-07-20 06:01:24 +02:00
|
|
|
case START_DESTROY_BLOCK:
|
|
|
|
case ABORT_DESTROY_BLOCK:
|
|
|
|
case STOP_DESTROY_BLOCK:
|
|
|
|
+ // 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:
|
|
|
|
--
|
2019-12-12 17:20:43 +01:00
|
|
|
2.17.1
|
2019-07-20 06:01:24 +02:00
|
|
|
|