2020-05-06 11:48:49 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
2020-05-06 09:49:52 +02:00
|
|
|
From: Spottedleaf <Spottedleaf@users.noreply.github.com>
|
|
|
|
Date: Tue, 5 May 2020 21:28:01 -0700
|
|
|
|
Subject: [PATCH] World view distance api
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/org/bukkit/World.java b/src/main/java/org/bukkit/World.java
|
2020-11-26 00:49:06 +01:00
|
|
|
index f53c05482c6b22c7410b3209e27d10858c126b79..ac149127ac7b1814bf0dfaa440cae558a860227d 100644
|
2020-05-06 09:49:52 +02:00
|
|
|
--- a/src/main/java/org/bukkit/World.java
|
|
|
|
+++ b/src/main/java/org/bukkit/World.java
|
2020-11-26 00:49:06 +01:00
|
|
|
@@ -3405,6 +3405,34 @@ public interface World extends PluginMessageRecipient, Metadatable {
|
2020-05-06 09:49:52 +02:00
|
|
|
int getViewDistance();
|
|
|
|
// Spigot end
|
|
|
|
|
|
|
|
+ // Paper start - view distance api
|
|
|
|
+ /**
|
|
|
|
+ * Sets the view distance for this world.
|
|
|
|
+ * @param viewDistance view distance in [2, 32]
|
|
|
|
+ */
|
|
|
|
+ void setViewDistance(int viewDistance);
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Returns the no-tick view distance for this world.
|
|
|
|
+ * <p>
|
|
|
|
+ * No-tick view distance is the view distance where chunks will load, however the chunks and their entities will not
|
|
|
|
+ * be set to tick.
|
|
|
|
+ * </p>
|
|
|
|
+ * @return The no-tick view distance for this world.
|
|
|
|
+ */
|
|
|
|
+ int getNoTickViewDistance();
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * Sets the no-tick view distance for this world.
|
|
|
|
+ * <p>
|
|
|
|
+ * No-tick view distance is the view distance where chunks will load, however the chunks and their entities will not
|
|
|
|
+ * be set to tick.
|
|
|
|
+ * </p>
|
|
|
|
+ * @param viewDistance view distance in [2, 32]
|
|
|
|
+ */
|
|
|
|
+ void setNoTickViewDistance(int viewDistance);
|
|
|
|
+ // Paper end - view distance api
|
|
|
|
+
|
|
|
|
// Spigot start
|
|
|
|
public class Spigot {
|
|
|
|
|