1
0
mirror of https://github.com/PaperMC/Paper.git synced 2025-07-29 11:12:04 -07:00
Commit Graph

1144 Commits

Author SHA1 Message Date
Nassim Jahnke
f12d33f04e Track codec writing 2025-02-25 21:45:02 +01:00
bonan
e5a8ee849f Hide soul speed particles for vanished players ()
Co-authored-by: Tamion <70228790+notTamion@users.noreply.github.com>
2025-02-21 12:02:32 +01:00
Bjarne Koll
7b4d44f573 Revert "Always pass event block to damage source ()"
This reverts commit ab984a0711.

The block damage is null *and has been* null in cases where the block
has already been cleared. Consumers are supposed to use the
getDamagerBlockState instead.
2025-02-21 11:52:04 +01:00
Bjarne Koll
ab984a0711 Always pass event block to damage source ()
Always passes the respective block to a damage source when passing a
block state. While we could technically use the damageSourcePosition
here by, we'd have to translate it back to a block position by
subtracting .5 from all its components.
Such behaviour however relies on the caller logic's mutation of the
damageSourcePosition and will break once this position is not the centre
of the block.

Passing in the block at the specific callsite is a lot more future
proof.
2025-02-20 20:22:46 +01:00
Emilia Kond
5e2a3bc0e2 Call EntityChangeBlockEvent with correct block when waxing () 2025-02-20 10:46:11 +01:00
Epic
e494f2894e Correctly call BlockFadeEvents () 2025-02-18 00:19:30 +01:00
Bjarne Koll
142695eb00 Default minecraft alias to redirect ()
While the running server will still be using the recently introduced
copy-mechanic for vanilla command namespacing, the data converter logic
relies on the fact that namespaced aliases were redirects as well.

To not break the converted, the commands type now takes a modern flag
only set by the running server.
2025-02-18 00:09:54 +01:00
Bjarne Koll
3b9106c7d1 Readd dead redirect recovery ()
While the paper command system no longer uses redirects for namespaced
registration, vanilla still does. This means that removal of vanilla
redirecting target nodes still causes issues, e.g. the removal of the
vanilla 'msg' node in favour of a command alias one.
Redirecting nodes like tell, minecraft:msg and minecraft:tell are broken
by this and need to by flattened before sending them to the client.
2025-02-17 23:51:52 +01:00
Dqu1J
fd69140d80 Fix disable-tripwire-updates option not cancelling tripwire hook updates () 2025-02-17 20:07:02 +01:00
Miles
8eb8e44ac3 Allow For Default Titles in InventoryView Builders () 2025-02-16 23:07:00 +01:00
Jake Potrebic
84609dc046 Don't auto-create any brig redirects () 2025-02-16 13:55:27 -08:00
FlorianMichael
88cdd22076 Fixup luck and random implementation in CB loot-tables () 2025-02-16 13:06:01 -08:00
Tamion
60394c5b98 Fix PlayerReadyArrowEvent cancellation desync () 2025-02-16 21:44:08 +01:00
TonytheMacaroni
2a4a115432 Add EntityEquipmentChangedEvent () 2025-02-16 20:46:59 +01:00
Creeam
a3781ff3be Separate tick count to ensure vanilla parity () 2025-02-16 20:46:37 +01:00
Chaosdave34
b9023b5dc3 Add EntityAttemptSmashAttackEvent () 2025-02-16 20:19:28 +01:00
Lulu13022002
7bee99714a Cleanup damage source a bit () 2025-02-16 20:14:00 +01:00
Pedro
cb25c0cf31 [ci skip] Fix annotation fields used in NMS getBukkitEntity () 2025-02-16 19:17:26 +01:00
Lulu13022002
0a04c3fe22 Fix some NPEs () 2025-02-12 23:15:37 +01:00
Warrior
e616498ed7 Add Vault block API () 2025-02-12 23:15:22 +01:00
Warrior
1be2e5f311 Fix vanilla map decorations sending when not dirty () 2025-02-12 23:13:34 +01:00
Tamion
072a8317b2 Add proper attached blocks API to AbstractArrow () 2025-02-12 23:13:07 +01:00
Owen
fa5824e4c8 Add skipTripwireHookPlacementValidation ()
This allows for the configuration of tripwire hook duping.
2025-02-10 23:04:38 +01:00
Lulu13022002
1a04e96ab7 Fix EntityBreedEvent cancellation () 2025-02-08 20:59:13 +01:00
Lulu13022002
51acc802b8 Prevent duplicate raider in RaidSpawnWaveEvent list () 2025-02-08 20:55:57 +01:00
Roni Äikäs
cb6c57e0f8 Fix Squid and Dolphin spawn height () 2025-02-08 20:24:07 +01:00
masmc05
786ddf53c6 Default piston block entity direction to DOWN () 2025-02-08 20:17:45 +01:00
Shane Freeder
597dcfffb9 Add support for lz4 ()
Mojang added this early 2024, however, it wasn't ever added to the actual config option
inside of paper
2025-02-08 19:07:43 +01:00
Warrior
5395ae37bd Fix composter block setting bukkit owner twice () 2025-02-02 22:38:01 +01:00
Lulu13022002
d4a957849c Experimental annotation changes () 2025-01-30 20:02:14 +01:00
Spottedleaf
e2f0efd1af Remove nms.Entity#isChunkLoaded
This method was used pre 1.17 era where an Entity was explicitly
tied to a (then called) Chunk's entity slices. If an entity
was not inside a Chunk, then it was considered invalid as
it was not possible to save the entity.

In 1.17+, entities are now tied to a separately tracked entity
section management system. This system is far more reliable now
as it no longer requires a full chunk load to properly track
entities for saving. As a result, an Entity if inside the world
is always attached to some entity chunk section (except in rare
cases in Vanilla which are fixed in Moonrise).

As a result, whether the chunk the entity is in is loaded is no
longer an indication of whether they are tracked in the world
and we can reliably infer that the entity is correctly in the
world through the valid field alone.

Additionally drop the isInWorld() check, as valid=true implies
isInWorld=true. More importantly, the isInWorld() check invokes
getHandle which may trip a thread check on Folia. This will fix
World#getEntities() and friends exploding on Folia.

However, World#getEntities() on Folia still cannot reliably return
all entities in the world as actions such as cross-region
(not cross-world) teleporting will remove entities from the world.
2025-01-28 17:33:48 -08:00
caramel
7e21cb8181 fix PlayerChangedMainHandEvent javadoc ()
* fix PlayerChangedMainHandEvent javadoc

* Obsolete

---------

Co-authored-by: Bjarne Koll <lynxplay101@gmail.com>
2025-01-26 14:00:32 -08:00
EnZaXD
fb5b173c6a Add PlayerClientLoadedWorldEvent () 2025-01-25 21:47:08 +01:00
Creeam
81bb82f521 Fix wrong piston world border check () 2025-01-25 21:13:21 +01:00
Bjarne Koll
6b7650d81b Only add goat horn once () 2025-01-22 18:20:24 +01:00
Pedro
73f7736eb9 Drop patch for MC-273635 fixed in MC 1.21.4 () 2025-01-18 14:30:13 +01:00
Bjarne Koll
8e80d4e158 Correctly construct StructureManager 2025-01-14 19:21:52 +01:00
Bjarne Koll
209e5f8580 Readd dropped hunk for ender dragon fight data ()
Dragon fight data should be read from the now split world instead of the
main world level.dat.
Partial hunk was dropped during hardfork.
2025-01-14 19:03:30 +01:00
Bjarne Koll
eeec611b9d Fix zombie villager infection chance hunk ()
Dropped during hardfork, now moved to a false-ed out if statement to
prevent dropping in future updates.
2025-01-14 17:15:47 +01:00
Tamion
ab1b312064 Call PlayerItemDamageEvent for tridents () 2025-01-12 15:29:52 -08:00
Pedro
ad74b673fa Fix client visual desync if cooldown events are cancelled () 2025-01-12 22:56:11 +01:00
Lulu13022002
2ea6aee343 Deprecate Turtle#isDigging () 2025-01-12 12:49:25 -08:00
Creeam
86c6308faf Fix locate command dist overflow/underflow () 2025-01-12 17:55:45 +01:00
caramel
76617ddf43 Add EntityEffectTickEvent () 2025-01-12 17:50:22 +01:00
Tamion
eb4db794eb Make CommandSourceStack respect hidden players () 2025-01-12 17:50:08 +01:00
Bjarne Koll
e5542cfdc3 Hide unnecessary decorated pot data ()
Prevent decorated pots from sending their contents to clients as
contents are not needed for rendering.
2025-01-12 17:49:49 +01:00
Nassim Jahnke
9746d73ade Add back known movement check 2025-01-12 15:29:07 +01:00
Strokkur24
c2f24e1567 Feat: Add 'with' methods to CommandSourceStack () 2025-01-11 13:29:16 -08:00
Miles
c94922514a MenuType API addition InventoryView Builders () 2025-01-11 20:21:24 +01:00
David
775002a357 [ci skip] Remove nullable from SyncedEntityData#packAll () 2025-01-11 20:03:13 +01:00