Skip to content

Commit cdad49b

Browse files
committed
Do not mark plugin tickets as forced; keep correct ticket types
Plugin tickets being marked as forced will mess up the forceload command. CHUNK_LOAD and FUTURE_AWAIT are the only tickets that should be preserved on shutdown - logic that is waiting on these to finish loading is not capable of handling a failure to load. The logic in general is also not capable of handling the removal of the ticket identifier in 1.21.5. It is possible to fix these shortcomings but Moonrise will resolve them, so why bother.
1 parent db8c646 commit cdad49b

File tree

2 files changed

+5
-49
lines changed

2 files changed

+5
-49
lines changed

paper-server/patches/sources/net/minecraft/server/level/TicketType.java.patch

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
public static final TicketType UNKNOWN = register("unknown", 1L, false, TicketType.TicketUse.LOADING);
77
+ public static final TicketType PLUGIN = register("plugin", 0L, false, TicketType.TicketUse.LOADING_AND_SIMULATION); // CraftBukkit
88
+ public static final TicketType POST_TELEPORT = register("post_teleport", 5L, false, TicketType.TicketUse.LOADING_AND_SIMULATION); // Paper
9-
+ public static final TicketType PLUGIN_TICKET = register("plugin_ticket", 0L, false, TicketType.TicketUse.LOADING_AND_SIMULATION); // Paper
10-
+ public static final TicketType FUTURE_AWAIT = register("future_await", 0L, false, TicketType.TicketUse.LOADING_AND_SIMULATION); // Paper
11-
+ public static final TicketType CHUNK_LOAD = TicketType.register("chunk_load", TicketType.NO_TIMEOUT, false, TicketType.TicketUse.LOADING); // Paper - moonrise // TODO maybe move to moonrise
9+
+ public static final TicketType PLUGIN_TICKET = register("plugin_ticket", TicketType.NO_TIMEOUT, false, TicketType.TicketUse.LOADING_AND_SIMULATION); // Paper
10+
+ public static final TicketType FUTURE_AWAIT = register("future_await", TicketType.NO_TIMEOUT, false, TicketType.TicketUse.LOADING_AND_SIMULATION); // Paper
11+
+ public static final TicketType CHUNK_LOAD = register("chunk_load", TicketType.NO_TIMEOUT, false, TicketType.TicketUse.LOADING); // Paper - moonrise
1212

1313
public static TicketType register(String name, long timeout, boolean persist, TicketType.TicketUse use) {
1414
return Registry.register(BuiltInRegistries.TICKET_TYPE, name, new TicketType(timeout, persist, use));
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,15 @@
11
--- a/net/minecraft/world/level/TicketStorage.java
22
+++ b/net/minecraft/world/level/TicketStorage.java
3-
@@ -152,7 +_,7 @@
4-
this.loadingChunkUpdatedListener.update(chunkPos, ticket.getTicketLevel(), true);
5-
}
6-
7-
- if (ticket.getType().equals(TicketType.FORCED)) {
8-
+ if (isForced(ticket.getType())) { // Paper
9-
this.chunksWithForcedTickets.add(chunkPos);
10-
}
11-
12-
@@ -235,7 +_,7 @@
13-
this.loadingChunkUpdatedListener.update(chunkPos, getTicketLevelAt(list, false), false);
14-
}
15-
16-
- if (ticket.getType().equals(TicketType.FORCED)) {
17-
+ if (isForced(ticket.getType())) { // Paper
18-
this.updateForcedChunks();
19-
}
20-
21-
@@ -246,7 +_,7 @@
22-
}
23-
24-
private void updateForcedChunks() {
25-
- this.chunksWithForcedTickets = this.getAllChunksWithTicketThat(ticket -> ticket.getType().equals(TicketType.FORCED));
26-
+ this.chunksWithForcedTickets = this.getAllChunksWithTicketThat(ticket -> isForced(ticket.getType())); // Paper
27-
}
28-
29-
public String getTicketDebugString(long chunkPos, boolean requireSimulation) {
303
@@ -264,7 +_,7 @@
314
}
325

336
public void deactivateTicketsOnClosing() {
347
- this.removeTicketIf(ticket -> ticket.getType() != TicketType.UNKNOWN, this.deactivatedTickets);
35-
+ this.removeTicketIf(ticket -> doNotPreserve(ticket.getType()), this.deactivatedTickets); // Paper
8+
+ this.removeTicketIf(ticket -> ticket.getType() != TicketType.UNKNOWN && ticket.getType() != TicketType.CHUNK_LOAD && ticket.getType() != TicketType.FUTURE_AWAIT, this.deactivatedTickets);
369
}
3710

3811
public void removeTicketIf(Predicate<Ticket> predicate, @Nullable Long2ObjectOpenHashMap<List<Ticket>> tickets) {
39-
@@ -294,7 +_,7 @@
40-
flag1 = true;
41-
}
42-
43-
- if (ticket.getType().equals(TicketType.FORCED)) {
44-
+ if (isForced(ticket.getType())) { // Paper
45-
flag = true;
46-
}
47-
}
48-
@@ -369,4 +_,27 @@
12+
@@ -369,4 +_,19 @@
4913
public interface ChunkUpdated {
5014
void update(long chunkPos, int i, boolean ticketLevel);
5115
}
@@ -63,13 +27,5 @@
6327
+ public void removeAllPluginRegionTickets(TicketType ticketType, int ticketLevel, org.bukkit.plugin.Plugin ticketIdentifier) {
6428
+ removeTicketIf(ticket -> ticket.getType() == ticketType && ticket.getTicketLevel() == ticketLevel && ticket.key == ticketIdentifier, null);
6529
+ }
66-
+
67-
+ private boolean isForced(TicketType type) {
68-
+ return type == TicketType.FORCED || type == TicketType.PLUGIN_TICKET;
69-
+ }
70-
+
71-
+ private boolean doNotPreserve(TicketType type) {
72-
+ return type != TicketType.UNKNOWN && type != TicketType.POST_TELEPORT && type != TicketType.FUTURE_AWAIT; // Add additional tickets to preserve
73-
+ }
7430
+ // Paper end
7531
}

0 commit comments

Comments
 (0)