Added a config option for ticking markers (#9034)
This commit is contained in:
parent
dc08c74cb3
commit
50e683de14
2 changed files with 20 additions and 12 deletions
|
@ -1448,10 +1448,10 @@ index 0000000000000000000000000000000000000000..1bb16fc7598cd53e822d84b69d6a9727
|
|||
+}
|
||||
diff --git a/src/main/java/io/papermc/paper/configuration/WorldConfiguration.java b/src/main/java/io/papermc/paper/configuration/WorldConfiguration.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..56e9155ebe850bcf759f5ae08e838f1a5aa593e5
|
||||
index 0000000000000000000000000000000000000000..6b7795451036f5867e2ddbe2013d83256bc83076
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/io/papermc/paper/configuration/WorldConfiguration.java
|
||||
@@ -0,0 +1,475 @@
|
||||
@@ -0,0 +1,481 @@
|
||||
+package io.papermc.paper.configuration;
|
||||
+
|
||||
+import com.google.common.collect.HashBasedTable;
|
||||
|
@ -1574,6 +1574,12 @@ index 0000000000000000000000000000000000000000..56e9155ebe850bcf759f5ae08e838f1a
|
|||
+ public boolean tick = true;
|
||||
+ }
|
||||
+
|
||||
+ public Markers markers;
|
||||
+
|
||||
+ public class Markers extends ConfigurationPart {
|
||||
+ public boolean tick = true;
|
||||
+ }
|
||||
+
|
||||
+ public Spawning spawning;
|
||||
+
|
||||
+ public class Spawning extends ConfigurationPart {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue