Skip to content

Commit d4b5936

Browse files
committed
some fixes and simplify overrides
1 parent 4d28058 commit d4b5936

File tree

132 files changed

+613
-694
lines changed

Some content is hidden

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

132 files changed

+613
-694
lines changed

build-data/paper.at

+5-1
Original file line numberDiff line numberDiff line change
@@ -233,6 +233,8 @@ public net.minecraft.world.entity.LivingEntity detectEquipmentUpdates()V
233233
public net.minecraft.world.entity.LivingEntity effectsDirty
234234
public net.minecraft.world.entity.LivingEntity entityEventForEquipmentBreak(Lnet/minecraft/world/entity/EquipmentSlot;)B
235235
public net.minecraft.world.entity.LivingEntity getDeathSound()Lnet/minecraft/sounds/SoundEvent;
236+
public net.minecraft.world.entity.LivingEntity getFallDamageSound(I)Lnet/minecraft/sounds/SoundEvent;
237+
public net.minecraft.world.entity.LivingEntity getHurtSound(Lnet/minecraft/world/damagesource/DamageSource;)Lnet/minecraft/sounds/SoundEvent;
236238
public net.minecraft.world.entity.LivingEntity getSoundVolume()F
237239
public net.minecraft.world.entity.LivingEntity jumping
238240
public net.minecraft.world.entity.LivingEntity lastHurt
@@ -245,6 +247,7 @@ public net.minecraft.world.entity.LivingEntity playSecondaryHurtSound(Lnet/minec
245247
public net.minecraft.world.entity.LivingEntity setLivingEntityFlag(IZ)V
246248
public net.minecraft.world.entity.LivingEntity useItemRemaining
247249
public net.minecraft.world.entity.Mob armorDropChances
250+
public net.minecraft.world.entity.Mob getAmbientSound()Lnet/minecraft/sounds/SoundEvent;
248251
public net.minecraft.world.entity.Mob getEquipmentDropChance(Lnet/minecraft/world/entity/EquipmentSlot;)F
249252
public net.minecraft.world.entity.Mob handDropChances
250253
public net.minecraft.world.entity.Mob isSunBurnTick()Z
@@ -491,7 +494,6 @@ public net.minecraft.world.entity.raid.Raid ticksActive
491494
public net.minecraft.world.entity.raid.Raid totalHealth
492495
public net.minecraft.world.entity.raid.Raider$HoldGroundAttackGoal
493496
public net.minecraft.world.entity.raid.Raids raidMap
494-
public net.minecraft.world.entity.vehicle.AbstractBoat getDropItem()Lnet/minecraft/world/item/Item;
495497
public net.minecraft.world.entity.vehicle.AbstractBoat getStatus()Lnet/minecraft/world/entity/vehicle/AbstractBoat$Status;
496498
public net.minecraft.world.entity.vehicle.AbstractBoat status
497499
public net.minecraft.world.entity.vehicle.AbstractMinecartContainer lootTable
@@ -502,6 +504,7 @@ public net.minecraft.world.entity.vehicle.MinecartTNT explode(D)V
502504
public net.minecraft.world.entity.vehicle.MinecartTNT explosionPowerBase
503505
public net.minecraft.world.entity.vehicle.MinecartTNT explosionSpeedFactor
504506
public net.minecraft.world.entity.vehicle.MinecartTNT fuse
507+
public net.minecraft.world.entity.vehicle.VehicleEntity getDropItem()Lnet/minecraft/world/item/Item;
505508
public net.minecraft.world.flag.FeatureFlag mask
506509
public net.minecraft.world.flag.FeatureFlag universe
507510
public net.minecraft.world.flag.FeatureFlagRegistry names
@@ -560,6 +563,7 @@ public net.minecraft.world.level.BaseSpawner spawnCount
560563
public net.minecraft.world.level.BaseSpawner spawnDelay
561564
public net.minecraft.world.level.BaseSpawner spawnPotentials
562565
public net.minecraft.world.level.BaseSpawner spawnRange
566+
public net.minecraft.world.level.GameRules$Value deserialize(Ljava/lang/String;)V
563567
public net.minecraft.world.level.GameRules$Value onChanged(Lnet/minecraft/server/MinecraftServer;)V
564568
public net.minecraft.world.level.Level getEntities()Lnet/minecraft/world/level/entity/LevelEntityGetter;
565569
public net.minecraft.world.level.Level levelData

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

+9-3
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,9 @@ public interface Bell extends TileState {
2626
* @param entity the entity ringing the bell
2727
* @return true if rung successfully, false if the event was cancelled
2828
*/
29-
public boolean ring(@Nullable Entity entity);
29+
default boolean ring(@Nullable Entity entity) {
30+
return this.ring(entity, null);
31+
}
3032

3133
/**
3234
* Ring this bell. This will call a {@link BellRingEvent}.
@@ -35,15 +37,19 @@ public interface Bell extends TileState {
3537
* ring in the direction that the bell is facing
3638
* @return true if rung successfully, false if the event was cancelled
3739
*/
38-
public boolean ring(@Nullable BlockFace direction);
40+
default boolean ring(@Nullable BlockFace direction) {
41+
return this.ring(null, direction);
42+
}
3943

4044
/**
4145
* Ring this bell in the direction that the bell is facing. This will call a
4246
* {@link BellRingEvent}.
4347
*
4448
* @return true if rung successfully, false if the event was cancelled
4549
*/
46-
public boolean ring();
50+
default boolean ring() {
51+
return this.ring(null, null);
52+
}
4753

4854
/**
4955
* Check whether or not this bell is shaking. A bell is considered to be

paper-api/src/main/java/org/bukkit/event/entity/EntityTargetEvent.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -162,11 +162,11 @@ public enum TargetReason {
162162
/**
163163
* When the target is in a different dimension
164164
*/
165-
TARGET_OTHER_LEVEL, // Paper
165+
TARGET_OTHER_LEVEL,
166166
/**
167167
* When the target is in creative or spectator gamemode, or the difficulty is peaceful, or other reasons
168168
*/
169-
TARGET_INVALID, // Paper
169+
TARGET_INVALID,
170170
/**
171171
* A currently unknown reason for the entity changing target.
172172
*/

paper-server/patches/sources/net/minecraft/commands/CommandSourceStack.java.patch

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@
1818

1919
public CommandSourceStack(
2020
CommandSource source,
21-
@@ -187,6 +_,30 @@
22-
this.chatMessageChainer
21+
@@ -188,6 +_,30 @@
2322
);
2423
}
25-
+
24+
2625
+ // Paper start - Expose 'with' functions from the CommandSourceStack
2726
+ @Override
2827
+ public CommandSourceStack withLocation(org.bukkit.Location location) {
@@ -46,9 +45,10 @@
4645
+ );
4746
+ }
4847
+ // Paper end - Expose 'with' functions from the CommandSourceStack
49-
48+
+
5049
public CommandSourceStack withRotation(Vec2 rotation) {
5150
return this.rotation.equals(rotation)
51+
? this
5252
@@ -391,9 +_,44 @@
5353

5454
@Override

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

+6-6
Original file line numberDiff line numberDiff line change
@@ -309,25 +309,25 @@
309309
}
310310
+ // CraftBukkit start
311311
+ level.captureTreeGeneration = false;
312-
+ if (level.capturedBlockStates.size() > 0) {
312+
+ if (!level.capturedBlockStates.isEmpty()) {
313313
+ org.bukkit.TreeType treeType = net.minecraft.world.level.block.SaplingBlock.treeType;
314314
+ net.minecraft.world.level.block.SaplingBlock.treeType = null;
315315
+ org.bukkit.Location location = org.bukkit.craftbukkit.util.CraftLocation.toBukkit(blockPos, level.getWorld());
316-
+ List<org.bukkit.block.BlockState> blocks = new java.util.ArrayList<>(level.capturedBlockStates.values());
316+
+ List<org.bukkit.block.BlockState> states = new java.util.ArrayList<>(level.capturedBlockStates.values());
317317
+ level.capturedBlockStates.clear();
318318
+ org.bukkit.event.world.StructureGrowEvent structureEvent = null;
319319
+ if (treeType != null) {
320-
+ structureEvent = new org.bukkit.event.world.StructureGrowEvent(location, treeType, false, null, blocks);
320+
+ structureEvent = new org.bukkit.event.world.StructureGrowEvent(location, treeType, false, null, states);
321321
+ org.bukkit.Bukkit.getPluginManager().callEvent(structureEvent);
322322
+ }
323323
+
324-
+ org.bukkit.event.block.BlockFertilizeEvent fertilizeEvent = new org.bukkit.event.block.BlockFertilizeEvent(location.getBlock(), null, blocks);
324+
+ org.bukkit.event.block.BlockFertilizeEvent fertilizeEvent = new org.bukkit.event.block.BlockFertilizeEvent(location.getBlock(), null, states);
325325
+ fertilizeEvent.setCancelled(structureEvent != null && structureEvent.isCancelled());
326326
+ org.bukkit.Bukkit.getPluginManager().callEvent(fertilizeEvent);
327327
+
328328
+ if (!fertilizeEvent.isCancelled()) {
329-
+ for (org.bukkit.block.BlockState blockstate : blocks) {
330-
+ org.bukkit.craftbukkit.block.CraftBlockState craftBlockState = (org.bukkit.craftbukkit.block.CraftBlockState) blocks;
329+
+ for (org.bukkit.block.BlockState state : states) {
330+
+ org.bukkit.craftbukkit.block.CraftBlockState craftBlockState = (org.bukkit.craftbukkit.block.CraftBlockState) state;
331331
+ craftBlockState.place(craftBlockState.getFlags());
332332
+ blockSource.level().checkCapturedTreeStateForObserverNotify(blockPos, craftBlockState); // Paper - notify observers even if grow failed
333333
+ }

paper-server/patches/sources/net/minecraft/server/dedicated/Settings.java.patch

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
+ }
1616
+
1717
+ private String getOverride(String name, String value) {
18-
+ if ((this.options != null) && (this.options.has(name))) {
18+
+ if (this.options != null && this.options.has(name)) {
1919
+ return String.valueOf(this.options.valueOf(name));
2020
+ }
2121
+

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

+9-7
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
private int lastSpawnChunkRadius;
1010
final EntityTickList entityTickList = new EntityTickList();
1111
public final PersistentEntitySectionManager<Entity> entityManager;
12-
@@ -205,11 +_,130 @@
12+
@@ -205,11 +_,131 @@
1313
private final boolean tickTime;
1414
private final RandomSequences randomSequences;
1515

@@ -19,7 +19,8 @@
1919
+ public boolean hasPhysicsEvent = true; // Paper - BlockPhysicsEvent
2020
+ public boolean hasEntityMoveEvent; // Paper - Add EntityMoveEvent
2121
+
22-
+ public LevelChunk getChunkIfLoaded(int x, int z) {
22+
+ @Override
23+
+ public @Nullable LevelChunk getChunkIfLoaded(int x, int z) {
2324
+ return this.chunkSource.getChunkAtIfLoadedImmediately(x, z); // Paper - Use getChunkIfLoadedImmediately
2425
+ }
2526
+
@@ -362,13 +363,14 @@
362363
}
363364
}
364365

365-
@@ -577,6 +_,11 @@
366+
@@ -577,6 +_,12 @@
366367
}
367368

368369
protected BlockPos findLightningTargetAround(BlockPos pos) {
369370
+ // Paper start - Add methods to find targets for lightning strikes
370371
+ return this.findLightningTargetAround(pos, false);
371372
+ }
373+
+
372374
+ public BlockPos findLightningTargetAround(BlockPos pos, boolean returnNullWhenNoTarget) {
373375
+ // Paper end - Add methods to find targets for lightning strikes
374376
BlockPos heightmapPos = this.getHeightmapPos(Heightmap.Types.MOTION_BLOCKING, pos);
@@ -558,7 +560,7 @@
558560
+ }
559561
+
560562
+ @Override
561-
+ public boolean addFreshEntity(Entity entity, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason reason) {
563+
+ public boolean addFreshEntity(Entity entity, @Nullable org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason reason) {
562564
+ return this.addEntity(entity, reason);
563565
+ // CraftBukkit end
564566
}
@@ -569,7 +571,7 @@
569571
+ return this.addWithUUID(entity, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.DEFAULT);
570572
+ }
571573
+
572-
+ public boolean addWithUUID(Entity entity, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason reason) {
574+
+ public boolean addWithUUID(Entity entity, @Nullable org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason reason) {
573575
+ return this.addEntity(entity, reason);
574576
+ // CraftBukkit end
575577
}
@@ -582,7 +584,7 @@
582584
+ this.addDuringTeleport(entity, null);
583585
+ }
584586
+
585-
+ public void addDuringTeleport(Entity entity, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason reason) {
587+
+ public void addDuringTeleport(Entity entity, @Nullable org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason reason) {
586588
+ // CraftBukkit end
587589
if (entity instanceof ServerPlayer serverPlayer) {
588590
this.addPlayer(serverPlayer);
@@ -598,7 +600,7 @@
598600

599601
- private boolean addEntity(Entity entity) {
600602
+ // CraftBukkit start
601-
+ private boolean addEntity(Entity entity, org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason spawnReason) {
603+
+ private boolean addEntity(Entity entity, @Nullable org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason spawnReason) {
602604
+ org.spigotmc.AsyncCatcher.catchOp("entity add"); // Spigot
603605
+ entity.generation = false; // Paper - Don't fire sync event during generation; Reset flag if it was added during a ServerLevel generation process
604606
+ // Paper start - extra debug info

0 commit comments

Comments
 (0)