Skip to content

Commit 17ea49c

Browse files
committed
tag changes and update some mapping
1 parent 3124c70 commit 17ea49c

File tree

56 files changed

+442
-492
lines changed

Some content is hidden

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

56 files changed

+442
-492
lines changed

paper-api/src/main/java/io/papermc/paper/block/LockableTileState.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
import org.bukkit.block.TileState;
66

77
/**
8-
* Interface for tile entities that are lockable.
8+
* Interface for block entities that are lockable.
99
*/
1010
public interface LockableTileState extends TileState, Lockable, Nameable {
1111
}

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

+7-7
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ static long getChunkKey(int x, int z) {
136136
@NotNull Entity @NotNull [] getEntities();
137137

138138
/**
139-
* Get a list of all tile entities in the chunk.
139+
* Get a list of all block entities in the chunk.
140140
*
141-
* @return The tile entities.
141+
* @return The block entities.
142142
*/
143143
@NotNull
144144
// Paper start
@@ -147,20 +147,20 @@ static long getChunkKey(int x, int z) {
147147
}
148148

149149
/**
150-
* Get a list of all tile entities in the chunk.
150+
* Get a list of all block entities in the chunk.
151151
*
152152
* @param useSnapshot Take snapshots or direct references
153-
* @return The tile entities.
153+
* @return The block entities.
154154
*/
155155
@NotNull
156156
BlockState @NotNull [] getTileEntities(boolean useSnapshot);
157157

158158
/**
159-
* Get a list of all tile entities that match a given predicate in the chunk.
159+
* Get a list of all block entities that match a given predicate in the chunk.
160160
*
161-
* @param blockPredicate The predicate of blocks to return tile entities for
161+
* @param blockPredicate The predicate of blocks to return block entities for
162162
* @param useSnapshot Take snapshots or direct references
163-
* @return The tile entities.
163+
* @return The block entities.
164164
*/
165165
@NotNull
166166
Collection<BlockState> getTileEntities(java.util.function.@NotNull Predicate<? super Block> blockPredicate, boolean useSnapshot);

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

+9-3
Original file line numberDiff line numberDiff line change
@@ -727,10 +727,16 @@ public interface Tag<T extends Keyed> extends Keyed {
727727
*/
728728
Tag<Material> MANGROVE_ROOTS_CAN_GROW_THROUGH = Bukkit.getTag(REGISTRY_BLOCKS, NamespacedKey.minecraft("mangrove_roots_can_grow_through"), Material.class);
729729
/**
730-
* Vanilla block tag representing all blocks which dead bushes may be placed
731-
* on.
730+
* Vanilla block tag representing all blocks which dry vegetation may be placed on.
731+
*/
732+
Tag<Material> DRY_VEGETATION_MAY_PLACE_ON = Bukkit.getTag(REGISTRY_BLOCKS, NamespacedKey.minecraft("dry_vegetation_may_place_on"), Material.class);
733+
/**
734+
* Vanilla block tag representing all blocks which dead bushes may be placed on.
735+
*
736+
* @deprecated partially replaced by {@link #DRY_VEGETATION_MAY_PLACE_ON}
732737
*/
733-
Tag<Material> DEAD_BUSH_MAY_PLACE_ON = Bukkit.getTag(REGISTRY_BLOCKS, NamespacedKey.minecraft("dead_bush_may_place_on"), Material.class);
738+
@Deprecated(since = "1.21.5", forRemoval = true)
739+
Tag<Material> DEAD_BUSH_MAY_PLACE_ON = DRY_VEGETATION_MAY_PLACE_ON;
734740
/**
735741
* Vanilla block tag representing all blocks which snap dropped goat horns.
736742
*/

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -103,27 +103,27 @@ public interface World extends RegionAccessor, WorldInfo, PluginMessageRecipient
103103

104104
// Paper start
105105
/**
106-
* @return The amount of Entities in this world
106+
* @return The amount of entities in this world
107107
*/
108108
int getEntityCount();
109109

110110
/**
111-
* @return The amount of Tile Entities in this world
111+
* @return The amount of block entities in this world
112112
*/
113113
int getTileEntityCount();
114114

115115
/**
116-
* @return The amount of Tickable Tile Entities in this world
116+
* @return The amount of tickable block entities in this world
117117
*/
118118
int getTickableTileEntityCount();
119119

120120
/**
121-
* @return The amount of Chunks in this world
121+
* @return The amount of chunks in this world
122122
*/
123123
int getChunkCount();
124124

125125
/**
126-
* @return The amount of Players in this world
126+
* @return The amount of players in this world
127127
*/
128128
int getPlayerCount();
129129
// Paper end
@@ -744,7 +744,7 @@ default boolean regenerateChunk(int x, int z) {
744744
* this method
745745
* @return true if the tree was created successfully, otherwise false
746746
* @see #generateTree(org.bukkit.Location, java.util.Random, org.bukkit.TreeType, java.util.function.Consumer)
747-
* @deprecated this method does not handle tile entities (bee nests)
747+
* @deprecated this method does not handle block entities (bee nests)
748748
*/
749749
@Deprecated(since = "1.17.1")
750750
public boolean generateTree(@NotNull Location loc, @NotNull TreeType type, @NotNull BlockChangeDelegate delegate);

paper-api/src/main/java/org/bukkit/block/Block.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ public static int getBlockKeyZ(long packed) {
364364
// Paper start
365365
/**
366366
* @see #getState() optionally disables use of snapshot, to operate on real block data
367-
* @param useSnapshot if this block is a TE, should we create a fully copy of the TileEntity
367+
* @param useSnapshot if this block is a block entity, should we create a full copy of the BlockEntity
368368
* @return BlockState with the current state of this block
369369
*/
370370
@NotNull

paper-server/patches/sources/net/minecraft/core/dispenser/DispenseItemBehavior.java.patch

+3-3
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,13 @@
141141
+ int x = blockPos.getX();
142142
+ int y = blockPos.getY();
143143
+ int z = blockPos.getZ();
144-
+ BlockState iblockdata = level.getBlockState(blockPos);
144+
+ BlockState state = level.getBlockState(blockPos);
145145
+ ItemStack dispensedItem = item; // Paper - track changed item from the dispense event
146146
+ // Paper start - correctly check if the bucket place will succeed
147147
+ /* Taken from SolidBucketItem#emptyContents */
148-
+ boolean willEmptyContentsSolidBucketItem = dispensibleContainerItem instanceof net.minecraft.world.item.SolidBucketItem && level.isInWorldBounds(blockPos) && iblockdata.isAir();
148+
+ boolean willEmptyContentsSolidBucketItem = dispensibleContainerItem instanceof net.minecraft.world.item.SolidBucketItem && level.isInWorldBounds(blockPos) && state.isAir();
149149
+ /* Taken from BucketItem#emptyContents */
150-
+ boolean willEmptyBucketItem = dispensibleContainerItem instanceof final net.minecraft.world.item.BucketItem bucketItem && bucketItem.content instanceof net.minecraft.world.level.material.FlowingFluid && (iblockdata.isAir() || iblockdata.canBeReplaced(bucketItem.content) || (iblockdata.getBlock() instanceof net.minecraft.world.level.block.LiquidBlockContainer liquidBlockContainer && liquidBlockContainer.canPlaceLiquid(null, level, blockPos, iblockdata, bucketItem.content)));
150+
+ boolean willEmptyBucketItem = dispensibleContainerItem instanceof final net.minecraft.world.item.BucketItem bucketItem && bucketItem.content instanceof net.minecraft.world.level.material.FlowingFluid && (state.isAir() || state.canBeReplaced(bucketItem.content) || (state.getBlock() instanceof net.minecraft.world.level.block.LiquidBlockContainer liquidBlockContainer && liquidBlockContainer.canPlaceLiquid(null, level, blockPos, state, bucketItem.content)));
151151
+ if (willEmptyContentsSolidBucketItem || willEmptyBucketItem) {
152152
+ // Paper end - correctly check if the bucket place will succeed
153153
+ org.bukkit.block.Block block = org.bukkit.craftbukkit.block.CraftBlock.at(level, blockSource.pos());

paper-server/patches/sources/net/minecraft/server/MinecraftServer.java.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@
586586
flag = true;
587587
}
588588

589-
+ /* // CraftBukkit start - moved to WorldServer.save
589+
+ /* // CraftBukkit start - moved to ServerLevel#save
590590
ServerLevel serverLevel1 = this.overworld();
591591
ServerLevelData serverLevelData = this.worldData.overworldData();
592592
serverLevelData.setWorldBorder(serverLevel1.getWorldBorder().createSettings());

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

+3-3
Original file line numberDiff line numberDiff line change
@@ -532,10 +532,10 @@
532532
}
533533
}
534534
+
535-
+ // CraftBukkit start - moved from MinecraftServer.saveChunks
536-
+ ServerLevel worldserver1 = this;
535+
+ // CraftBukkit start - moved from MinecraftServer#saveAllChunks
536+
+ ServerLevel serverLevel1 = this;
537537
+
538-
+ this.serverLevelData.setWorldBorder(worldserver1.getWorldBorder().createSettings());
538+
+ this.serverLevelData.setWorldBorder(serverLevel1.getWorldBorder().createSettings());
539539
+ this.serverLevelData.setCustomBossEvents(this.server.getCustomBossEvents().save(this.registryAccess()));
540540
+ this.levelStorageAccess.saveDataTag(this.server.registryAccess(), this.serverLevelData, this.server.getPlayerList().getSingleplayerData());
541541
+ // CraftBukkit end

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -599,7 +599,7 @@
599599
+
600600
+ org.bukkit.Location enter = this.getBukkitEntity().getLocation();
601601
+ PositionMoveRotation absolutePosition = PositionMoveRotation.calculateAbsolute(PositionMoveRotation.of(this), PositionMoveRotation.of(teleportTransition), teleportTransition.relatives());
602-
+ org.bukkit.Location exit = /* (worldserver == null) ? null : // Paper - always non-null */org.bukkit.craftbukkit.util.CraftLocation.toBukkit(absolutePosition.position(), level.getWorld(), absolutePosition.yRot(), absolutePosition.xRot());
602+
+ org.bukkit.Location exit = org.bukkit.craftbukkit.util.CraftLocation.toBukkit(absolutePosition.position(), level.getWorld(), absolutePosition.yRot(), absolutePosition.xRot());
603603
+ org.bukkit.event.player.PlayerTeleportEvent tpEvent = new org.bukkit.event.player.PlayerTeleportEvent(this.getBukkitEntity(), enter, exit, teleportTransition.cause());
604604
+ // Paper start - gateway-specific teleport event
605605
+ if (this.portalProcess != null && this.portalProcess.isSamePortal(((net.minecraft.world.level.block.EndGatewayBlock) net.minecraft.world.level.block.Blocks.END_GATEWAY)) && this.serverLevel().getBlockEntity(this.portalProcess.getEntryPosition()) instanceof net.minecraft.world.level.block.entity.TheEndGatewayBlockEntity theEndGatewayBlockEntity) {

paper-server/patches/sources/net/minecraft/world/entity/boss/enderdragon/EnderDragon.java.patch

+2-2
Original file line numberDiff line numberDiff line change
@@ -264,9 +264,9 @@
264264
+
265265
+ // CraftBukkit start - SPIGOT-2420: Special case, the ender dragon drops 12000 xp for the first kill and 500 xp for every other kill and this over time.
266266
+ @Override
267-
+ public int getExpReward(ServerLevel worldserver, Entity entity) {
267+
+ public int getExpReward(ServerLevel level, Entity entity) {
268268
+ // CraftBukkit - Moved from #tickDeath method
269-
+ boolean flag = worldserver.getGameRules().getBoolean(GameRules.RULE_DOMOBLOOT);
269+
+ boolean flag = level.getGameRules().getBoolean(GameRules.RULE_DOMOBLOOT);
270270
+ int i = 500;
271271
+
272272
+ if (this.dragonFight != null && !this.dragonFight.hasPreviouslyKilledDragon()) {

paper-server/patches/sources/net/minecraft/world/item/ItemStack.java.patch

+11-11
Original file line numberDiff line numberDiff line change
@@ -167,25 +167,25 @@
167167
+ }
168168
+ }
169169
+
170-
+ // SPIGOT-7315: Moved from BlockBed#setPlacedBy
170+
+ // SPIGOT-7315: Moved from BedBlock#setPlacedBy
171171
+ if (placeEvent != null && this.item instanceof BedItem) {
172-
+ BlockPos position = ((org.bukkit.craftbukkit.block.CraftBlock) placeEvent.getBlock()).getPosition();
173-
+ net.minecraft.world.level.block.state.BlockState blockData = serverLevel.getBlockState(position);
172+
+ BlockPos pos = ((org.bukkit.craftbukkit.block.CraftBlock) placeEvent.getBlock()).getPosition();
173+
+ net.minecraft.world.level.block.state.BlockState state = serverLevel.getBlockState(pos);
174174
+
175-
+ if (blockData.getBlock() instanceof net.minecraft.world.level.block.BedBlock) {
176-
+ serverLevel.updateNeighborsAt(position, net.minecraft.world.level.block.Blocks.AIR);
177-
+ blockData.updateNeighbourShapes(serverLevel, position, 3);
175+
+ if (state.getBlock() instanceof net.minecraft.world.level.block.BedBlock) {
176+
+ serverLevel.updateNeighborsAt(pos, net.minecraft.world.level.block.Blocks.AIR);
177+
+ state.updateNeighbourShapes(serverLevel, pos, 3);
178178
+ }
179179
+ }
180180
+
181-
+ // SPIGOT-1288 - play sound stripped from ItemBlock
181+
+ // SPIGOT-1288 - play sound stripped from BlockItem
182182
+ if (this.item instanceof BlockItem) {
183183
+ // Paper start - Fix spigot sound playing for BlockItem ItemStacks
184-
+ BlockPos position = new net.minecraft.world.item.context.BlockPlaceContext(context).getClickedPos();
185-
+ net.minecraft.world.level.block.state.BlockState blockData = serverLevel.getBlockState(position);
186-
+ net.minecraft.world.level.block.SoundType soundeffecttype = blockData.getSoundType();
184+
+ BlockPos pos = new net.minecraft.world.item.context.BlockPlaceContext(context).getClickedPos();
185+
+ net.minecraft.world.level.block.state.BlockState state = serverLevel.getBlockState(pos);
186+
+ net.minecraft.world.level.block.SoundType soundType = state.getSoundType();
187187
+ // Paper end - Fix spigot sound playing for BlockItem ItemStacks
188-
+ serverLevel.playSound(player, clickedPos, soundeffecttype.getPlaceSound(), net.minecraft.sounds.SoundSource.BLOCKS, (soundeffecttype.getVolume() + 1.0F) / 2.0F, soundeffecttype.getPitch() * 0.8F);
188+
+ serverLevel.playSound(player, clickedPos, soundType.getPlaceSound(), net.minecraft.sounds.SoundSource.BLOCKS, (soundType.getVolume() + 1.0F) / 2.0F, soundType.getPitch() * 0.8F);
189189
+ }
190190
+
191191
+ player.awardStat(Stats.ITEM_USED.get(item));

0 commit comments

Comments
 (0)