adjust delay to 5s
This commit is contained in:
parent
fcf48a9c94
commit
a136173f15
1 changed files with 2 additions and 2 deletions
|
@ -4767,7 +4767,7 @@ index 0000000000000000000000000000000000000000..003a857e70ead858e8437e3c1bfaf22f
|
|||
+}
|
||||
diff --git a/src/main/java/ca/spottedleaf/moonrise/patches/chunk_system/player/RegionizedPlayerChunkLoader.java b/src/main/java/ca/spottedleaf/moonrise/patches/chunk_system/player/RegionizedPlayerChunkLoader.java
|
||||
new file mode 100644
|
||||
index 0000000000000000000000000000000000000000..5120655cd2feed764c7429f41b615a42cf4d6ee0
|
||||
index 0000000000000000000000000000000000000000..a9e2130db9ea790b08f05230e0d7ee9f638d06fb
|
||||
--- /dev/null
|
||||
+++ b/src/main/java/ca/spottedleaf/moonrise/patches/chunk_system/player/RegionizedPlayerChunkLoader.java
|
||||
@@ -0,0 +1,1084 @@
|
||||
|
@ -4819,7 +4819,7 @@ index 0000000000000000000000000000000000000000..5120655cd2feed764c7429f41b615a42
|
|||
+
|
||||
+ public static final TicketType<Long> PLAYER_TICKET = TicketType.create("chunk_system:player_ticket", Long::compareTo);
|
||||
+ public static final TicketType<Long> PLAYER_TICKET_DELAYED = TicketType.create("chunk_system:player_ticket_delayed", Long::compareTo, 5 * 20);
|
||||
+ public static final TicketType<Unit> PLAYER_JOIN = TicketType.create("chunk_system:player_join", (a, b) -> 0, 2 * 20);
|
||||
+ public static final TicketType<Unit> PLAYER_JOIN = TicketType.create("chunk_system:player_join", (a, b) -> 0, 5 * 20);
|
||||
+
|
||||
+ public static final int MIN_VIEW_DISTANCE = 2;
|
||||
+ public static final int MAX_VIEW_DISTANCE = 32;
|
||||
|
|
Loading…
Reference in a new issue