|
1 | 1 | --- a/net/minecraft/world/level/TicketStorage.java
|
2 | 2 | +++ 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) { |
30 | 3 | @@ -264,7 +_,7 @@
|
31 | 4 | }
|
32 | 5 |
|
33 | 6 | public void deactivateTicketsOnClosing() {
|
34 | 7 | - 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); |
36 | 9 | }
|
37 | 10 |
|
38 | 11 | 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 @@ |
49 | 13 | public interface ChunkUpdated {
|
50 | 14 | void update(long chunkPos, int i, boolean ticketLevel);
|
51 | 15 | }
|
|
63 | 27 | + public void removeAllPluginRegionTickets(TicketType ticketType, int ticketLevel, org.bukkit.plugin.Plugin ticketIdentifier) {
|
64 | 28 | + removeTicketIf(ticket -> ticket.getType() == ticketType && ticket.getTicketLevel() == ticketLevel && ticket.key == ticketIdentifier, null);
|
65 | 29 | + }
|
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 |
| -+ } |
74 | 30 | + // Paper end
|
75 | 31 | }
|
0 commit comments