Skip to content

Commit 3ab0d4b

Browse files
committed
misc changes
1 parent 43505dc commit 3ab0d4b

File tree

216 files changed

+1627
-2917
lines changed

Some content is hidden

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

216 files changed

+1627
-2917
lines changed

build-data/paper.at

+5
Original file line numberDiff line numberDiff line change
@@ -190,6 +190,9 @@ public net.minecraft.world.entity.Entity FLAG_INVISIBLE
190190
public net.minecraft.world.entity.Entity getEncodeId()Ljava/lang/String;
191191
public net.minecraft.world.entity.Entity getFireImmuneTicks()I
192192
public net.minecraft.world.entity.Entity getSharedFlag(I)Z
193+
public net.minecraft.world.entity.Entity getSwimSound()Lnet/minecraft/sounds/SoundEvent;
194+
public net.minecraft.world.entity.Entity getSwimSoundgetSwimSplashSound()Lnet/minecraft/sounds/SoundEvent;
195+
public net.minecraft.world.entity.Entity getSwimSplashSound()Lnet/minecraft/sounds/SoundEvent;
193196
public net.minecraft.world.entity.Entity hasVisualFire
194197
public net.minecraft.world.entity.Entity isAffectedByBlocks()Z
195198
public net.minecraft.world.entity.Entity isInBubbleColumn()Z
@@ -440,6 +443,7 @@ public net.minecraft.world.entity.projectile.AbstractArrow getPickupItem()Lnet/m
440443
public net.minecraft.world.entity.projectile.AbstractArrow isInGround()Z
441444
public net.minecraft.world.entity.projectile.AbstractArrow life
442445
public net.minecraft.world.entity.projectile.AbstractArrow pickupItemStack
446+
public net.minecraft.world.entity.projectile.AbstractArrow setPickupItemStack(Lnet/minecraft/world/item/ItemStack;)V
443447
public net.minecraft.world.entity.projectile.AbstractArrow setPierceLevel(B)V
444448
public net.minecraft.world.entity.projectile.AbstractHurtingProjectile assignDirectionalMovement(Lnet/minecraft/world/phys/Vec3;D)V
445449
public net.minecraft.world.entity.projectile.Arrow NO_EFFECT_COLOR
@@ -481,6 +485,7 @@ public net.minecraft.world.entity.projectile.ShulkerBullet targetDeltaX
481485
public net.minecraft.world.entity.projectile.ShulkerBullet targetDeltaY
482486
public net.minecraft.world.entity.projectile.ShulkerBullet targetDeltaZ
483487
public net.minecraft.world.entity.projectile.SpectralArrow duration
488+
public net.minecraft.world.entity.projectile.ThrowableItemProjectile getDefaultItem()Lnet/minecraft/world/item/Item;
484489
public net.minecraft.world.entity.projectile.ThrownPotion isLingering()Z
485490
public net.minecraft.world.entity.projectile.ThrownTrident dealtDamage
486491
public net.minecraft.world.entity.projectile.windcharge.AbstractWindCharge explode(Lnet/minecraft/world/phys/Vec3;)V

paper-api/src/main/java/io/papermc/paper/brigadier/PaperBrigadier.java

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99

1010
/**
1111
* Helper methods to bridge the gaps between Brigadier and Paper-MojangAPI.
12+
*
1213
* @deprecated for removal. See {@link MessageComponentSerializer} for a direct replacement of functionality found in
1314
* this class.
1415
* As a general entrypoint to brigadier on paper, see {@link io.papermc.paper.command.brigadier.Commands}.

paper-api/src/main/java/org/bukkit/Bukkit.java

+15-14
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
import java.util.UUID;
1515
import java.util.function.Consumer;
1616
import java.util.logging.Logger;
17+
import net.kyori.adventure.text.Component;
1718
import org.bukkit.Warning.WarningState;
1819
import org.bukkit.advancement.Advancement;
1920
import org.bukkit.block.data.BlockData;
@@ -189,8 +190,8 @@ public static String getMinecraftVersion() {
189190
* uses. Normal and immediate iterator use without consequences that
190191
* affect the collection are fully supported. The effects following
191192
* (non-exhaustive) {@link Entity#teleport(Location) teleportation},
192-
* {@link Player#setHealth(double) death}, and {@link Player#kickPlayer(
193-
* String) kicking} are undefined. Any use of this collection from
193+
* {@link Player#setHealth(double) death}, and {@link Player#kick(
194+
* Component) kicking} are undefined. Any use of this collection from
194195
* asynchronous threads is unsafe.
195196
* <p>
196197
* For safe consequential iteration or mimicking the old array behavior,
@@ -468,7 +469,7 @@ public static void reloadWhitelist() {
468469
*
469470
* @param message the message
470471
* @return the number of players
471-
* @deprecated in favour of {@link Server#broadcast(net.kyori.adventure.text.Component)}
472+
* @deprecated in favour of {@link Server#broadcast(Component)}
472473
*/
473474
@Deprecated // Paper
474475
public static int broadcastMessage(@NotNull String message) {
@@ -480,7 +481,7 @@ public static int broadcastMessage(@NotNull String message) {
480481
* Sends the component to all online players.
481482
*
482483
* @param component the component to send
483-
* @deprecated use {@code sendMessage} methods on {@link #getServer()} that accept {@link net.kyori.adventure.text.Component}
484+
* @deprecated use {@code sendMessage} methods on {@link #getServer()} that accept {@link Component}
484485
*/
485486
@Deprecated
486487
public static void broadcast(@NotNull net.md_5.bungee.api.chat.BaseComponent component) {
@@ -491,7 +492,7 @@ public static void broadcast(@NotNull net.md_5.bungee.api.chat.BaseComponent com
491492
* Sends an array of components as a single message to all online players.
492493
*
493494
* @param components the components to send
494-
* @deprecated use {@code sendMessage} methods on {@link #getServer()} that accept {@link net.kyori.adventure.text.Component}
495+
* @deprecated use {@code sendMessage} methods on {@link #getServer()} that accept {@link Component}
495496
*/
496497
@Deprecated
497498
public static void broadcast(@NotNull net.md_5.bungee.api.chat.BaseComponent... components) {
@@ -1461,7 +1462,7 @@ public static void shutdown() {
14611462
/**
14621463
* Broadcast a message to all players.
14631464
* <p>
1464-
* This is the same as calling {@link #broadcast(net.kyori.adventure.text.Component,
1465+
* This is the same as calling {@link #broadcast(Component,
14651466
* java.lang.String)} with the {@link Server#BROADCAST_CHANNEL_USERS} permission.
14661467
*
14671468
* @param message the message
@@ -1491,7 +1492,7 @@ public static int broadcast(net.kyori.adventure.text.@NotNull Component message,
14911492
* @param permission the required permission {@link Permissible
14921493
* permissibles} must have to receive the broadcast
14931494
* @return number of message recipients
1494-
* @deprecated in favour of {@link #broadcast(net.kyori.adventure.text.Component, String)}
1495+
* @deprecated in favour of {@link #broadcast(Component, String)}
14951496
*/
14961497
@Deprecated // Paper
14971498
public static int broadcast(@NotNull String message, @NotNull String permission) {
@@ -1739,7 +1740,7 @@ public static ConsoleCommandSender getConsoleSender() {
17391740
* @return a command sender
17401741
*/
17411742
@NotNull
1742-
public static CommandSender createCommandSender(final @NotNull java.util.function.Consumer<? super net.kyori.adventure.text.Component> feedback) {
1743+
public static CommandSender createCommandSender(final @NotNull java.util.function.Consumer<? super Component> feedback) {
17431744
return server.createCommandSender(feedback);
17441745
}
17451746
// Paper end
@@ -1863,7 +1864,7 @@ public static Inventory createInventory(@Nullable InventoryHolder owner, @NotNul
18631864
* @return The new inventory.
18641865
* @throws IllegalArgumentException if the {@link InventoryType} cannot be
18651866
* viewed.
1866-
* @deprecated in favour of {@link #createInventory(InventoryHolder, InventoryType, net.kyori.adventure.text.Component)}
1867+
* @deprecated in favour of {@link #createInventory(InventoryHolder, InventoryType, Component)}
18671868
*
18681869
* @see InventoryType#isCreatable()
18691870
*/
@@ -1915,7 +1916,7 @@ public static Inventory createInventory(@Nullable InventoryHolder owner, int siz
19151916
* viewed
19161917
* @return a new inventory
19171918
* @throws IllegalArgumentException if the size is not a multiple of 9
1918-
* @deprecated in favour of {@link #createInventory(InventoryHolder, InventoryType, net.kyori.adventure.text.Component)}
1919+
* @deprecated in favour of {@link #createInventory(InventoryHolder, InventoryType, Component)}
19191920
*/
19201921
@Deprecated // Paper
19211922
@NotNull
@@ -1944,7 +1945,7 @@ public static Inventory createInventory(@Nullable InventoryHolder owner, int siz
19441945
* @param title the title of the corresponding merchant inventory, displayed
19451946
* when the merchant inventory is viewed
19461947
* @return a new merchant
1947-
* @deprecated in favour of {@link #createMerchant(net.kyori.adventure.text.Component)}. The title parameter is
1948+
* @deprecated in favour of {@link #createMerchant(Component)}. The title parameter is
19481949
* no-longer needed when used with {@link MenuType#MERCHANT} and {@link MenuType.Typed#builder()}
19491950
*/
19501951
@NotNull
@@ -2081,7 +2082,7 @@ public static boolean isPrimaryThread() {
20812082
*
20822083
* @return the server's MOTD
20832084
*/
2084-
@NotNull public static net.kyori.adventure.text.Component motd() {
2085+
@NotNull public static Component motd() {
20852086
return server.motd();
20862087
}
20872088

@@ -2120,7 +2121,7 @@ public static String getMotd() {
21202121
* Set the message that is displayed on the server list.
21212122
*
21222123
* @param motd The message to be displayed
2123-
* @deprecated in favour of {@link #motd(net.kyori.adventure.text.Component)}
2124+
* @deprecated in favour of {@link #motd(Component)}
21242125
*/
21252126
@Deprecated // Paper
21262127
public static void setMotd(@NotNull String motd) {
@@ -2694,7 +2695,7 @@ public static String getPermissionMessage() {
26942695
* @return the default message
26952696
*/
26962697
@NotNull
2697-
public static net.kyori.adventure.text.Component permissionMessage() {
2698+
public static Component permissionMessage() {
26982699
return server.permissionMessage();
26992700
}
27002701

paper-api/src/main/java/org/bukkit/EntityEffect.java

+1-3
Original file line numberDiff line numberDiff line change
@@ -458,9 +458,7 @@ public enum EntityEffect {
458458
*/
459459
BREAK_EQUIPMENT_BODY(65, LivingEntity.class),
460460
/**
461-
* A creaking transient shaking when being hit.
462-
* Does not apply to plain creaking entities as they are not invulnerable like the transient ones spawned by the
463-
* creaking heart.
461+
* A creaking shaking when being hit.
464462
*/
465463
SHAKE(66, Creaking.class);
466464

paper-api/src/main/java/org/bukkit/OfflinePlayer.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,10 @@ public default BanEntry banPlayer(@Nullable String reason, java.util.@Nullable D
257257
*/
258258
@Nullable
259259
@Deprecated(since = "1.20.4")
260-
public Location getBedSpawnLocation();
260+
default Location getBedSpawnLocation() {
261+
return this.getRespawnLocation();
262+
}
263+
261264
// Paper start
262265
/**
263266
* Gets the last date and time that this player logged into the server.

paper-api/src/main/java/org/bukkit/Server.java

+12-5
Original file line numberDiff line numberDiff line change
@@ -151,8 +151,8 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
151151
* uses. Normal and immediate iterator use without consequences that
152152
* affect the collection are fully supported. The effects following
153153
* (non-exhaustive) {@link Entity#teleport(Location) teleportation},
154-
* {@link Player#setHealth(double) death}, and {@link Player#kickPlayer(
155-
* String) kicking} are undefined. Any use of this collection from
154+
* {@link Player#setHealth(double) death}, and {@link Player#kick(
155+
* Component) kicking} are undefined. Any use of this collection from
156156
* asynchronous threads is unsafe.
157157
* <p>
158158
* For safe consequential iteration or mimicking the old array behavior,
@@ -387,7 +387,9 @@ public interface Server extends PluginMessageRecipient, net.kyori.adventure.audi
387387
* @deprecated use {@link #broadcast(net.kyori.adventure.text.Component)}
388388
*/
389389
@Deprecated // Paper
390-
public int broadcastMessage(@NotNull String message);
390+
default int broadcastMessage(@NotNull String message) {
391+
return this.broadcast(message, BROADCAST_CHANNEL_USERS);
392+
}
391393

392394
// Paper start
393395
/**
@@ -1296,7 +1298,10 @@ default World getWorld(@NotNull NamespacedKey worldKey) {
12961298
* @deprecated in favour of {@link #broadcast(net.kyori.adventure.text.Component, String)}
12971299
*/
12981300
@Deprecated // Paper
1299-
public int broadcast(@NotNull String message, @NotNull String permission);
1301+
default int broadcast(@NotNull String message, @NotNull String permission) {
1302+
return this.broadcast(net.kyori.adventure.text.serializer.legacy.LegacyComponentSerializer.legacySection().deserialize(message), permission);
1303+
}
1304+
13001305
// Paper start
13011306
/**
13021307
* Broadcast a message to all players.
@@ -1307,7 +1312,9 @@ default World getWorld(@NotNull NamespacedKey worldKey) {
13071312
* @param message the message
13081313
* @return the number of players
13091314
*/
1310-
int broadcast(net.kyori.adventure.text.@NotNull Component message);
1315+
default int broadcast(net.kyori.adventure.text.@NotNull Component message) {
1316+
return this.broadcast(message, BROADCAST_CHANNEL_USERS);
1317+
}
13111318

13121319
/**
13131320
* Broadcasts the specified message to every user with the given

paper-api/src/main/java/org/bukkit/entity/Entity.java

+3-7
Original file line numberDiff line numberDiff line change
@@ -337,7 +337,6 @@ final class Holder {
337337
*/
338338
boolean isFrozen();
339339

340-
// Paper start - missing entity api
341340
/**
342341
* Sets whether the entity is invisible or not.
343342
* <p>
@@ -347,14 +346,14 @@ final class Holder {
347346
*
348347
* @param invisible If the entity is invisible
349348
*/
350-
void setInvisible(boolean invisible); // Paper - moved up from LivingEntity
349+
void setInvisible(boolean invisible);
351350

352351
/**
353352
* Gets whether the entity is invisible or not.
354353
*
355354
* @return Whether the entity is invisible
356355
*/
357-
boolean isInvisible(); // Paper - moved up from LivingEntity
356+
boolean isInvisible();
358357

359358
/**
360359
* Sets this entities no physics status.
@@ -369,9 +368,7 @@ final class Holder {
369368
* @return true if the entity does not have physics.
370369
*/
371370
boolean hasNoPhysics();
372-
// Paper end - missing entity api
373371

374-
// Paper start - Freeze Tick Lock API
375372
/**
376373
* Gets if the entity currently has its freeze ticks locked
377374
* to a set amount.
@@ -389,12 +386,11 @@ final class Holder {
389386
* @param locked prevent vanilla modification or not
390387
*/
391388
void lockFreezeTicks(boolean locked);
392-
// Paper end - Freeze Tick Lock API
393389

394390
/**
395391
* Mark the entity's removal.
396392
*
397-
* @throws UnsupportedOperationException if you try to remove a {@link Player} use {@link Player#kickPlayer(String)} in this case instead
393+
* @throws UnsupportedOperationException if you try to remove a {@link Player} use {@link Player#kick(net.kyori.adventure.text.Component)} in this case instead
398394
*/
399395
public void remove();
400396

paper-api/src/main/java/org/bukkit/entity/HumanEntity.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -299,16 +299,16 @@ public interface HumanEntity extends LivingEntity, AnimalTamer, InventoryHolder
299299
/**
300300
* Force-closes the currently open inventory view for this player, if any.
301301
*/
302-
public void closeInventory();
302+
default void closeInventory() {
303+
this.closeInventory(org.bukkit.event.inventory.InventoryCloseEvent.Reason.PLUGIN);
304+
}
303305

304-
// Paper start
305306
/**
306307
* Force-closes the currently open inventory view for this player, if any.
307308
*
308309
* @param reason why the inventory is closing
309310
*/
310-
public void closeInventory(org.bukkit.event.inventory.InventoryCloseEvent.Reason reason);
311-
// Paper end
311+
void closeInventory(org.bukkit.event.inventory.InventoryCloseEvent.Reason reason);
312312

313313
/**
314314
* Returns the ItemStack currently in your hand, can be empty.

paper-api/src/main/java/org/bukkit/entity/LivingEntity.java

-16
Original file line numberDiff line numberDiff line change
@@ -1056,22 +1056,6 @@ default void setArrowsInBody(final int count) {
10561056
@Deprecated(since = "1.20.5", forRemoval = true) @org.jetbrains.annotations.Contract("-> fail") // Paper
10571057
public EntityCategory getCategory();
10581058

1059-
/**
1060-
* Sets whether the entity is invisible or not.
1061-
*
1062-
* @param invisible If the entity is invisible
1063-
*/
1064-
@Override // Paper - move invisibility up to Entity
1065-
public void setInvisible(boolean invisible);
1066-
1067-
/**
1068-
* Gets whether the entity is invisible or not.
1069-
*
1070-
* @return Whether the entity is invisible
1071-
*/
1072-
@Override // Paper - move invisibility up to Entity
1073-
public boolean isInvisible();
1074-
10751059
/**
10761060
* Get the number of arrows stuck in this entity
10771061
* @return Number of arrows stuck

0 commit comments

Comments
 (0)