Skip to content

Commit fb2c24b

Browse files
authored
Updated Upstream (Bukkit/CraftBukkit) (#8015)
Upstream has released updates that appear to apply and compile correctly. This update has not been tested by PaperMC and as with ANY update, please do your own testing Bukkit Changes: 05ae036 PR-746: Add option to use cached map color palette 57849c1 PR-759: Add preview chat option in ServerListPingEvent 0169e65 PR-758: Add missing server properties methods from 1.19 CraftBukkit Changes: 622dbe6 SPIGOT-7068: SKULK and SKULK_VEIN BlockSpreadEvents Still do not reference the correct source (SKULK_CATALYST) 6c61b73 PR-1052: Add option to use cached map color palette c882f38 SPIGOT-7066: Fix custom END worlds not generating DragonBattle 6866aab SPIGOT-2420: Can't set exp drops for EnderDragon death 9dcd465 PR-1067: Add preview chat option in ServerListPingEvent 36c2681 PR-1066: Add missing server properties methods from 1.19 031eaad Increase outdated build delay 8fda4b1 SPIGOT-7060: SCULK and SCULK_VEIN BlockSpreadEvents do not reference the correct source
1 parent ed9cf5c commit fb2c24b

File tree

99 files changed

+361
-358
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

99 files changed

+361
-358
lines changed

patches/api/0005-Adventure.patch

Lines changed: 34 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -475,7 +475,7 @@ index 0000000000000000000000000000000000000000..bff9a6295db367c6b89d69fb55459a40
475475
+ }
476476
+}
477477
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
478-
index c15861905d7af679c4f6ffc27719a900b0fe4284..d5fdc57ffcfac4eb18d7fbf44ce13257915b4afb 100644
478+
index 9db999c8c9645fa0161bc3a85fbfdd09283989fd..b23b6bf1af91c9460fdb231000df6191ec673544 100644
479479
--- a/src/main/java/org/bukkit/Bukkit.java
480480
+++ b/src/main/java/org/bukkit/Bukkit.java
481481
@@ -357,7 +357,9 @@ public final class Bukkit {
@@ -488,7 +488,7 @@ index c15861905d7af679c4f6ffc27719a900b0fe4284..d5fdc57ffcfac4eb18d7fbf44ce13257
488488
public static int broadcastMessage(@NotNull String message) {
489489
return server.broadcastMessage(message);
490490
}
491-
@@ -1051,6 +1053,19 @@ public final class Bukkit {
491+
@@ -1071,6 +1073,19 @@ public final class Bukkit {
492492
server.shutdown();
493493
}
494494

@@ -508,7 +508,7 @@ index c15861905d7af679c4f6ffc27719a900b0fe4284..d5fdc57ffcfac4eb18d7fbf44ce13257
508508
/**
509509
* Broadcasts the specified message to every user with the given
510510
* permission name.
511-
@@ -1060,6 +1075,21 @@ public final class Bukkit {
511+
@@ -1080,6 +1095,21 @@ public final class Bukkit {
512512
* permissibles} must have to receive the broadcast
513513
* @return number of message recipients
514514
*/
@@ -530,15 +530,15 @@ index c15861905d7af679c4f6ffc27719a900b0fe4284..d5fdc57ffcfac4eb18d7fbf44ce13257
530530
public static int broadcast(@NotNull String message, @NotNull String permission) {
531531
return server.broadcast(message, permission);
532532
}
533-
@@ -1298,6 +1328,7 @@ public final class Bukkit {
533+
@@ -1318,6 +1348,7 @@ public final class Bukkit {
534534
return server.createInventory(owner, type);
535535
}
536536

537537
+ // Paper start
538538
/**
539539
* Creates an empty inventory with the specified type and title. If the type
540540
* is {@link InventoryType#CHEST}, the new inventory has a size of 27;
541-
@@ -1323,6 +1354,38 @@ public final class Bukkit {
541+
@@ -1343,6 +1374,38 @@ public final class Bukkit {
542542
* @see InventoryType#isCreatable()
543543
*/
544544
@NotNull
@@ -577,15 +577,15 @@ index c15861905d7af679c4f6ffc27719a900b0fe4284..d5fdc57ffcfac4eb18d7fbf44ce13257
577577
public static Inventory createInventory(@Nullable InventoryHolder owner, @NotNull InventoryType type, @NotNull String title) {
578578
return server.createInventory(owner, type, title);
579579
}
580-
@@ -1341,6 +1404,7 @@ public final class Bukkit {
580+
@@ -1361,6 +1424,7 @@ public final class Bukkit {
581581
return server.createInventory(owner, size);
582582
}
583583

584584
+ // Paper start
585585
/**
586586
* Creates an empty inventory of type {@link InventoryType#CHEST} with the
587587
* specified size and title.
588-
@@ -1353,10 +1417,30 @@ public final class Bukkit {
588+
@@ -1373,10 +1437,30 @@ public final class Bukkit {
589589
* @throws IllegalArgumentException if the size is not a multiple of 9
590590
*/
591591
@NotNull
@@ -616,7 +616,7 @@ index c15861905d7af679c4f6ffc27719a900b0fe4284..d5fdc57ffcfac4eb18d7fbf44ce13257
616616
/**
617617
* Creates an empty merchant.
618618
*
619-
@@ -1364,7 +1448,20 @@ public final class Bukkit {
619+
@@ -1384,7 +1468,20 @@ public final class Bukkit {
620620
* when the merchant inventory is viewed
621621
* @return a new merchant
622622
*/
@@ -637,7 +637,7 @@ index c15861905d7af679c4f6ffc27719a900b0fe4284..d5fdc57ffcfac4eb18d7fbf44ce13257
637637
public static Merchant createMerchant(@Nullable String title) {
638638
return server.createMerchant(title);
639639
}
640-
@@ -1470,22 +1567,47 @@ public final class Bukkit {
640+
@@ -1501,22 +1598,47 @@ public final class Bukkit {
641641
return server.isPrimaryThread();
642642
}
643643

@@ -810,7 +810,7 @@ index 803fa0019869127ee8c7e4fb1777a59c43e66f8a..c65f0d6569c130b4920a9e71ad24af64
810810
+ // Paper end
811811
}
812812
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
813-
index cf53aead2eb5a52f1505ca694e95108fce28aa18..14b078e8fa4347dd0e186e5847693904e4ceb9df 100644
813+
index 485848dfa12bda15adda0d8f3a83f779a9ec05fe..01f4329d23a5e33f321df394107eaf1b918f8859 100644
814814
--- a/src/main/java/org/bukkit/Server.java
815815
+++ b/src/main/java/org/bukkit/Server.java
816816
@@ -58,13 +58,13 @@ import org.jetbrains.annotations.Nullable;
@@ -848,7 +848,7 @@ index cf53aead2eb5a52f1505ca694e95108fce28aa18..14b078e8fa4347dd0e186e5847693904
848848
public int broadcastMessage(@NotNull String message);
849849

850850
/**
851-
@@ -894,8 +896,33 @@ public interface Server extends PluginMessageRecipient {
851+
@@ -910,8 +912,33 @@ public interface Server extends PluginMessageRecipient {
852852
* @param permission the required permission {@link Permissible
853853
* permissibles} must have to receive the broadcast
854854
* @return number of message recipients
@@ -882,15 +882,15 @@ index cf53aead2eb5a52f1505ca694e95108fce28aa18..14b078e8fa4347dd0e186e5847693904
882882

883883
/**
884884
* Gets the player by the given name, regardless if they are offline or
885-
@@ -1093,6 +1120,7 @@ public interface Server extends PluginMessageRecipient {
885+
@@ -1109,6 +1136,7 @@ public interface Server extends PluginMessageRecipient {
886886
@NotNull
887887
Inventory createInventory(@Nullable InventoryHolder owner, @NotNull InventoryType type);
888888

889889
+ // Paper start
890890
/**
891891
* Creates an empty inventory with the specified type and title. If the type
892892
* is {@link InventoryType#CHEST}, the new inventory has a size of 27;
893-
@@ -1118,6 +1146,36 @@ public interface Server extends PluginMessageRecipient {
893+
@@ -1134,6 +1162,36 @@ public interface Server extends PluginMessageRecipient {
894894
* @see InventoryType#isCreatable()
895895
*/
896896
@NotNull
@@ -927,7 +927,7 @@ index cf53aead2eb5a52f1505ca694e95108fce28aa18..14b078e8fa4347dd0e186e5847693904
927927
Inventory createInventory(@Nullable InventoryHolder owner, @NotNull InventoryType type, @NotNull String title);
928928

929929
/**
930-
@@ -1132,6 +1190,22 @@ public interface Server extends PluginMessageRecipient {
930+
@@ -1148,6 +1206,22 @@ public interface Server extends PluginMessageRecipient {
931931
@NotNull
932932
Inventory createInventory(@Nullable InventoryHolder owner, int size) throws IllegalArgumentException;
933933

@@ -950,7 +950,7 @@ index cf53aead2eb5a52f1505ca694e95108fce28aa18..14b078e8fa4347dd0e186e5847693904
950950
/**
951951
* Creates an empty inventory of type {@link InventoryType#CHEST} with the
952952
* specified size and title.
953-
@@ -1142,10 +1216,13 @@ public interface Server extends PluginMessageRecipient {
953+
@@ -1158,10 +1232,13 @@ public interface Server extends PluginMessageRecipient {
954954
* viewed
955955
* @return a new inventory
956956
* @throws IllegalArgumentException if the size is not a multiple of 9
@@ -964,7 +964,7 @@ index cf53aead2eb5a52f1505ca694e95108fce28aa18..14b078e8fa4347dd0e186e5847693904
964964
/**
965965
* Creates an empty merchant.
966966
*
967-
@@ -1153,7 +1230,18 @@ public interface Server extends PluginMessageRecipient {
967+
@@ -1169,7 +1246,18 @@ public interface Server extends PluginMessageRecipient {
968968
* when the merchant inventory is viewed
969969
* @return a new merchant
970970
*/
@@ -983,7 +983,7 @@ index cf53aead2eb5a52f1505ca694e95108fce28aa18..14b078e8fa4347dd0e186e5847693904
983983
Merchant createMerchant(@Nullable String title);
984984

985985
/**
986-
@@ -1240,20 +1328,41 @@ public interface Server extends PluginMessageRecipient {
986+
@@ -1265,20 +1353,41 @@ public interface Server extends PluginMessageRecipient {
987987
*/
988988
boolean isPrimaryThread();
989989

@@ -1025,7 +1025,7 @@ index cf53aead2eb5a52f1505ca694e95108fce28aa18..14b078e8fa4347dd0e186e5847693904
10251025
String getShutdownMessage();
10261026

10271027
/**
1028-
@@ -1610,7 +1719,9 @@ public interface Server extends PluginMessageRecipient {
1028+
@@ -1635,7 +1744,9 @@ public interface Server extends PluginMessageRecipient {
10291029
* Sends the component to the player
10301030
*
10311031
* @param component the components to send
@@ -1035,7 +1035,7 @@ index cf53aead2eb5a52f1505ca694e95108fce28aa18..14b078e8fa4347dd0e186e5847693904
10351035
public void broadcast(@NotNull net.md_5.bungee.api.chat.BaseComponent component) {
10361036
throw new UnsupportedOperationException("Not supported yet.");
10371037
}
1038-
@@ -1619,7 +1730,9 @@ public interface Server extends PluginMessageRecipient {
1038+
@@ -1644,7 +1755,9 @@ public interface Server extends PluginMessageRecipient {
10391039
* Sends an array of components as a single message to the player
10401040
*
10411041
* @param components the components to send
@@ -3240,48 +3240,50 @@ index 03bfca9d368bbe4b7c1353d52c883e756bf69bda..943d324435350d3f16fad3e21cb472a0
32403240

32413241
/**
32423242
diff --git a/src/main/java/org/bukkit/event/server/ServerListPingEvent.java b/src/main/java/org/bukkit/event/server/ServerListPingEvent.java
3243-
index b9abfdc61f76c5562de6649f8440aeaab536b3be..c4644f3fd231bff35627ff667e37ccdefbfdbb88 100644
3243+
index 92941af574945936c3714718ed3eea23697c99df..5b8a7b897d9f9d8df3705eef36388f41be4531a6 100644
32443244
--- a/src/main/java/org/bukkit/event/server/ServerListPingEvent.java
32453245
+++ b/src/main/java/org/bukkit/event/server/ServerListPingEvent.java
3246-
@@ -21,15 +21,16 @@ public class ServerListPingEvent extends ServerEvent implements Iterable<Player>
3247-
private static final int MAGIC_PLAYER_COUNT = Integer.MIN_VALUE;
3246+
@@ -22,15 +22,16 @@ public class ServerListPingEvent extends ServerEvent implements Iterable<Player>
32483247
private static final HandlerList handlers = new HandlerList();
32493248
private final InetAddress address;
3249+
private final boolean shouldSendChatPreviews;
32503250
- private String motd;
32513251
+ private net.kyori.adventure.text.Component motd; // Paper
32523252
private final int numPlayers;
32533253
private int maxPlayers;
32543254

32553255
+ @Deprecated // Paper
3256-
public ServerListPingEvent(@NotNull final InetAddress address, @NotNull final String motd, final int numPlayers, final int maxPlayers) {
3256+
public ServerListPingEvent(@NotNull final InetAddress address, @NotNull final String motd, final boolean shouldSendChatPreviews, final int numPlayers, final int maxPlayers) {
32573257
super(true);
32583258
Preconditions.checkArgument(numPlayers >= 0, "Cannot have negative number of players online", numPlayers);
32593259
this.address = address;
32603260
- this.motd = motd;
32613261
+ this.motd = net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer.legacySection().deserialize(motd); // Paper
3262+
this.shouldSendChatPreviews = shouldSendChatPreviews;
32623263
this.numPlayers = numPlayers;
32633264
this.maxPlayers = maxPlayers;
3264-
}
3265-
@@ -42,14 +43,58 @@ public class ServerListPingEvent extends ServerEvent implements Iterable<Player>
3266-
* @param address the address of the pinger
3265+
@@ -45,15 +46,61 @@ public class ServerListPingEvent extends ServerEvent implements Iterable<Player>
32673266
* @param motd the message of the day
3267+
* @param shouldSendChatPreviews if the server should send chat previews
32683268
* @param maxPlayers the max number of players
3269-
+ * @deprecated in favour of {@link #ServerListPingEvent(java.net.InetAddress, net.kyori.adventure.text.Component, int)}
3269+
+ * @deprecated in favour of {@link #ServerListPingEvent(java.net.InetAddress, net.kyori.adventure.text.Component, boolean, int)}
32703270
*/
32713271
+ @Deprecated // Paper
3272-
protected ServerListPingEvent(@NotNull final InetAddress address, @NotNull final String motd, final int maxPlayers) {
3272+
protected ServerListPingEvent(@NotNull final InetAddress address, @NotNull final String motd, boolean shouldSendChatPreviews, final int maxPlayers) {
32733273
super(true);
32743274
this.numPlayers = MAGIC_PLAYER_COUNT;
32753275
this.address = address;
32763276
+ this.motd = net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer.legacySection().deserialize(motd); // Paper
3277+
+ this.shouldSendChatPreviews = shouldSendChatPreviews;
32773278
+ this.maxPlayers = maxPlayers;
32783279
+ }
32793280
+ // Paper start
3280-
+ public ServerListPingEvent(@NotNull final InetAddress address, @NotNull final net.kyori.adventure.text.Component motd, final int numPlayers, final int maxPlayers) {
3281+
+ public ServerListPingEvent(@NotNull final InetAddress address, @NotNull final net.kyori.adventure.text.Component motd, boolean shouldSendChatPreviews, final int numPlayers, final int maxPlayers) {
32813282
+ super(true);
32823283
+ Preconditions.checkArgument(numPlayers >= 0, "Cannot have negative number of players online (%s)", numPlayers);
32833284
+ this.address = address;
32843285
this.motd = motd;
3286+
this.shouldSendChatPreviews = shouldSendChatPreviews;
32853287
+ this.numPlayers = numPlayers;
32863288
this.maxPlayers = maxPlayers;
32873289
}
@@ -3294,11 +3296,12 @@ index b9abfdc61f76c5562de6649f8440aeaab536b3be..c4644f3fd231bff35627ff667e37ccde
32943296
+ * @param motd the message of the day
32953297
+ * @param maxPlayers the max number of players
32963298
+ */
3297-
+ protected ServerListPingEvent(@NotNull final InetAddress address, @NotNull final net.kyori.adventure.text.Component motd, final int maxPlayers) {
3299+
+ protected ServerListPingEvent(@NotNull final InetAddress address, @NotNull final net.kyori.adventure.text.Component motd, boolean shouldSendChatPreviews, final int maxPlayers) {
32983300
+ super(true);
32993301
+ this.numPlayers = MAGIC_PLAYER_COUNT;
33003302
+ this.address = address;
33013303
+ this.motd = motd;
3304+
+ this.shouldSendChatPreviews = shouldSendChatPreviews;
33023305
+ this.maxPlayers = maxPlayers;
33033306
+ }
33043307
+ /**
@@ -3321,7 +3324,7 @@ index b9abfdc61f76c5562de6649f8440aeaab536b3be..c4644f3fd231bff35627ff667e37ccde
33213324

33223325
/**
33233326
* Get the address the ping is coming from.
3324-
@@ -65,19 +110,23 @@ public class ServerListPingEvent extends ServerEvent implements Iterable<Player>
3327+
@@ -69,19 +116,23 @@ public class ServerListPingEvent extends ServerEvent implements Iterable<Player>
33253328
* Get the message of the day message.
33263329
*
33273330
* @return the message of the day

patches/api/0007-Timings-v2.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2791,7 +2791,7 @@ index 0000000000000000000000000000000000000000..5989ee21297935651b0edd44b8239e65
27912791
+ }
27922792
+}
27932793
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
2794-
index d5fdc57ffcfac4eb18d7fbf44ce13257915b4afb..35de49ea52b507dd925ed3c118518a335035a710 100644
2794+
index b23b6bf1af91c9460fdb231000df6191ec673544..95693bab8051ff3e94c3a184c8a2691eb3b49ec5 100644
27952795
--- a/src/main/java/org/bukkit/Bukkit.java
27962796
+++ b/src/main/java/org/bukkit/Bukkit.java
27972797
@@ -801,7 +801,6 @@ public final class Bukkit {
@@ -2803,10 +2803,10 @@ index d5fdc57ffcfac4eb18d7fbf44ce13257915b4afb..35de49ea52b507dd925ed3c118518a33
28032803

28042804
/**
28052805
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
2806-
index 14b078e8fa4347dd0e186e5847693904e4ceb9df..bbb4eb3c4e46ade7dd939c2b0e4436161d6f8a1e 100644
2806+
index 01f4329d23a5e33f321df394107eaf1b918f8859..1e717c3096f3cccf1ce4b0e849c43525011c84de 100644
28072807
--- a/src/main/java/org/bukkit/Server.java
28082808
+++ b/src/main/java/org/bukkit/Server.java
2809-
@@ -1715,6 +1715,26 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
2809+
@@ -1740,6 +1740,26 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
28102810
throw new UnsupportedOperationException("Not supported yet.");
28112811
}
28122812

patches/api/0010-Add-getTPS-method.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Subject: [PATCH] Add getTPS method
55

66

77
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
8-
index 5c6b7f5095a5bb7290e1edefb0c9e985123f80d8..595d368bc88b6217f1fb2e074de7fd5b07fa96df 100644
8+
index fddd0ff9accd661c47c7ccc6d7035c042d991e8b..362b879996623832d436bb987630b115b7d86f99 100644
99
--- a/src/main/java/org/bukkit/Bukkit.java
1010
+++ b/src/main/java/org/bukkit/Bukkit.java
11-
@@ -1845,6 +1845,17 @@ public final class Bukkit {
11+
@@ -1876,6 +1876,17 @@ public final class Bukkit {
1212
return server.getEntity(uuid);
1313
}
1414

@@ -27,10 +27,10 @@ index 5c6b7f5095a5bb7290e1edefb0c9e985123f80d8..595d368bc88b6217f1fb2e074de7fd5b
2727
* Get the advancement specified by this key.
2828
*
2929
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
30-
index 1dedbea03e259679e101a8443b662b20375adfd0..5aa2040dc51f65ad57329a5a235a22c50c62f1b2 100644
30+
index 768ae36e3e2fdff753f4f14aa79eb36026fb38c3..8dda96966061bb3a12b63fff74a378857ec43200 100644
3131
--- a/src/main/java/org/bukkit/Server.java
3232
+++ b/src/main/java/org/bukkit/Server.java
33-
@@ -1567,6 +1567,16 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
33+
@@ -1592,6 +1592,16 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
3434
@Nullable
3535
Entity getEntity(@NotNull UUID uuid);
3636

patches/api/0018-Expose-server-CommandMap.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ Subject: [PATCH] Expose server CommandMap
55

66

77
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
8-
index 595d368bc88b6217f1fb2e074de7fd5b07fa96df..4486e8ddcfc3aa1403bbfce28c0356c174709a9b 100644
8+
index 362b879996623832d436bb987630b115b7d86f99..5345e05755b13553491211a84d263c80ce347adf 100644
99
--- a/src/main/java/org/bukkit/Bukkit.java
1010
+++ b/src/main/java/org/bukkit/Bukkit.java
11-
@@ -2029,6 +2029,19 @@ public final class Bukkit {
11+
@@ -2060,6 +2060,19 @@ public final class Bukkit {
1212
return server.getUnsafe();
1313
}
1414

@@ -29,10 +29,10 @@ index 595d368bc88b6217f1fb2e074de7fd5b07fa96df..4486e8ddcfc3aa1403bbfce28c0356c1
2929
public static Server.Spigot spigot() {
3030
return server.spigot();
3131
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
32-
index 5aa2040dc51f65ad57329a5a235a22c50c62f1b2..96d6b49d609142fe93d5d07e65dd126adb5c2bde 100644
32+
index 8dda96966061bb3a12b63fff74a378857ec43200..aca9050075f3041e2b248368e378c354e7b553d6 100644
3333
--- a/src/main/java/org/bukkit/Server.java
3434
+++ b/src/main/java/org/bukkit/Server.java
35-
@@ -1577,6 +1577,15 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
35+
@@ -1602,6 +1602,15 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
3636
public double[] getTPS();
3737
// Paper end
3838

patches/api/0029-Add-command-to-reload-permissions.yml-and-require-co.patch

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ Subject: [PATCH] Add command to reload permissions.yml and require confirm to
66

77

88
diff --git a/src/main/java/org/bukkit/Bukkit.java b/src/main/java/org/bukkit/Bukkit.java
9-
index 1bd3780f8331074b24f9f4e2bbeeb2b37514aaa3..2b3ced048a48f660ca0859425583d342e7847744 100644
9+
index de853c6cfd5d00e0f88aa436974d8a439adaff35..6234738637f99e62894efef2b7f6499792771856 100644
1010
--- a/src/main/java/org/bukkit/Bukkit.java
1111
+++ b/src/main/java/org/bukkit/Bukkit.java
12-
@@ -2064,6 +2064,13 @@ public final class Bukkit {
12+
@@ -2095,6 +2095,13 @@ public final class Bukkit {
1313
public static org.bukkit.command.CommandMap getCommandMap() {
1414
return server.getCommandMap();
1515
}
@@ -24,10 +24,10 @@ index 1bd3780f8331074b24f9f4e2bbeeb2b37514aaa3..2b3ced048a48f660ca0859425583d342
2424

2525
@NotNull
2626
diff --git a/src/main/java/org/bukkit/Server.java b/src/main/java/org/bukkit/Server.java
27-
index 75bc4937f7a895c1bbf0a0800035ad8f7e0c5f46..be5f25a51a12082cb6732445c221d61246da89e9 100644
27+
index 6d9d49e334121a02780e39008df5c14f8bc0bfec..23150f346362322ec042c26717d4c6a58b756a6e 100644
2828
--- a/src/main/java/org/bukkit/Server.java
2929
+++ b/src/main/java/org/bukkit/Server.java
30-
@@ -1823,4 +1823,6 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
30+
@@ -1848,4 +1848,6 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
3131
@NotNull
3232
Spigot spigot();
3333
// Spigot end

0 commit comments

Comments
 (0)