1
0
Fork 0
mirror of https://github.com/PaperMC/Paper.git synced 2025-04-04 05:21:01 +02:00

More more work

This commit is contained in:
Nassim Jahnke 2024-12-03 19:21:12 +01:00
parent 529f01a04a
commit 3af13e34fb
192 changed files with 61 additions and 81 deletions
patches/server
API-to-get-Material-from-Boats-and-Minecarts.patchAdd-API-for-quit-reason.patchAdd-BellRingEvent.patchAdd-BlockStateMeta-clearBlockState.patchAdd-Destroy-Speed-API.patchAdd-LivingEntity-clearActiveItem.patchAdd-OBSTRUCTED-reason-to-BedEnterResult.patchAdd-PlayerAttackEntityCooldownResetEvent.patchAdd-PlayerConnectionCloseEvent.patchAdd-PlayerItemCooldownEvent.patchAdd-PlayerPostRespawnEvent.patchAdd-PlayerRecipeBookClickEvent.patchAdd-PlayerShearBlockEvent.patchAdd-PrepareResultEvent.patchAdd-Raw-Byte-ItemStack-Serialization.patchAdd-TargetHitEvent.patchAdd-ThrownEggHatchEvent.patchAdd-Wandering-Trader-spawn-rate-config-options.patchAdd-additional-open-container-api-to-HumanEntity.patchAdd-debug-for-sync-chunk-loads.patchAdd-entity-liquid-API.patchAdd-getOfflinePlayerIfCached-String.patchAdd-ignore-discounts-API.patchAdd-methods-to-get-translation-keys.patchAdd-missing-default-perms-for-commands.patchAdd-moon-phase-API.patchAdd-more-Evoker-API.patchAdd-more-Zombie-API.patchAdd-option-for-console-having-all-permissions.patchAdd-option-to-allow-iron-golems-to-spawn-in-air.patchAdd-option-to-disable-pillager-patrols.patchAdd-option-to-make-parrots-stay-on-shoulders-despite.patchAdd-option-to-nerf-pigmen-from-nether-portals.patchAdd-permission-for-command-blocks.patchAdd-phantom-creative-and-insomniac-controls.patchAdd-playPickupItemAnimation-to-LivingEntity.patchAdd-tick-times-API-and-mspt-command.patchAdd-villager-reputation-API.patchAdd-zombie-targets-turtle-egg-config.patchAdditional-Block-Material-API.patchAlternative-item-despawn-rate.patchAsync-command-map-building.patchAvoid-error-bubbling-up-when-item-stack-is-empty-in-.patchBeacon-API-custom-effect-ranges.patchBees-get-gravity-in-void.-Fixes-MC-167279.patchBlockDestroyEvent.patchBook-size-limits.patchBrand-support.patchBrigadier-Mojang-API.patchBuffer-joins-to-world.patchCache-DataFixerUpper-Rewrite-Rules-on-demand.patchCache-block-data-strings.patchCall-WhitelistToggleEvent-when-whitelist-is-toggled.patchClimbing-should-not-bypass-cramming-gamerule.patchConfigurable-chance-of-villager-zombie-infection.patchConfigurable-projectile-relative-velocity.patchConvert-legacy-attributes-in-Item-Meta.patchCreate-HoverEvent-from-ItemStack-Entity.patchDead-Player-s-shouldn-t-be-able-to-move.patchDo-not-accept-invalid-client-settings.patchDo-not-allow-Vexes-to-load-chunks.patchDo-not-let-the-server-load-chunks-from-newer-version.patchDon-t-allow-digging-into-unloaded-chunks.patchDon-t-check-chunk-for-portal-on-world-gen-entity-add.patchDon-t-crash-if-player-is-attempted-to-be-removed-fro.patchDon-t-fire-BlockFade-on-worldgen-threads.patchDon-t-load-Chunks-from-Hoppers-and-other-things.patchDon-t-move-existing-players-to-world-spawn.patchDon-t-require-FACING-data.patchDon-t-run-entity-collision-code-if-not-needed.patchDon-t-sleep-after-profile-lookups-if-not-needed.patchDon-t-tick-dead-players.patchDont-block-Player-remove-if-the-handle-is-a-custom-p.patchDont-send-unnecessary-sign-update.patchDuplicate-UUID-Resolve-Option.patchEnsure-Entity-position-and-AABB-are-never-invalid.patchEnsure-EntityRaider-respects-game-and-entity-rules-f.patchEntity-Jump-API.patchEntity-isTicking.patchExpand-World.spawnParticle-API-and-add-Builder.patchExperienceOrb-merging-stacking-API-and-fixes.patchExpose-LivingEntity-hurt-direction.patchExpose-MinecraftServer-isRunning.patchExpose-the-Entity-Counter-to-allow-plugins-to-use-va.patchExpose-the-internal-current-tick.patchExtend-block-drop-capture-to-capture-all-items-added.patchFire-PlayerJoinEvent-when-Player-is-actually-ready.patchFire-event-on-GS4-query.patchFix-AdvancementDataPlayer-leak-due-from-quitting-ear.patchFix-CB-call-to-changed-postToMainThread-method.patchFix-Concurrency-issue-in-ShufflingList.patchFix-CraftScheduler-runTaskTimerAsynchronously-Plugin.patchFix-CraftSound-backwards-compatibility.patchFix-Entity-Teleportation-and-cancel-velocity-if-tele.patchFix-Per-World-Difficulty-Remembering-Difficulty.patchFix-Player-spawnParticle-x-y-z-precision-loss.patchFix-PotionEffect-ignores-icon-flag.patchFix-SPIGOT-5824-Bukkit-world-container-is-not-used.patchFix-SPIGOT-5885-Unable-to-disable-advancements.patchFix-SpawnChangeEvent-not-firing-for-all-use-cases.patch

View file

@ -21,13 +21,11 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
switch (packet.getAction()) {
case PRESS_SHIFT_KEY:
this.player.setShiftKeyDown(true);
+
+ // Paper start - Add option to make parrots stay
+ if (this.player.level().paperConfig().entities.behavior.parrotsAreUnaffectedByPlayerMovement) {
+ this.player.removeEntitiesOnShoulder();
+ }
+ // Paper end - Add option to make parrots stay
+
+ // Paper start - Add option to make parrots stay
+ if (this.player.level().paperConfig().entities.behavior.parrotsAreUnaffectedByPlayerMovement) {
+ this.player.removeEntitiesOnShoulder();
+ }
+ // Paper end - Add option to make parrots stay
break;
case RELEASE_SHIFT_KEY:
this.player.setShiftKeyDown(false);

View file

@ -19,6 +19,6 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ return;
+ }
+ // Paper end - do not accept invalid information
boolean flag = this.player.isModelPartShown(PlayerModelPart.HAT);
this.player.updateOptions(packet.information());
this.connection.channel.attr(io.papermc.paper.adventure.PaperAdventure.LOCALE_ATTRIBUTE).set(net.kyori.adventure.translation.Translator.parseLocale(packet.information().language())); // Paper
}

View file

@ -63,15 +63,15 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
--- a/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
+++ b/src/main/java/net/minecraft/server/network/ServerGamePacketListenerImpl.java
@@ -0,0 +0,0 @@ public class ServerGamePacketListenerImpl extends ServerCommonPacketListenerImpl
case START_DESTROY_BLOCK:
case ABORT_DESTROY_BLOCK:
case STOP_DESTROY_BLOCK:
case START_DESTROY_BLOCK:
case ABORT_DESTROY_BLOCK:
case STOP_DESTROY_BLOCK:
+ // Paper start - Don't allow digging into unloaded chunks
+ if (this.player.level().getChunkIfLoadedImmediately(blockposition.getX() >> 4, blockposition.getZ() >> 4) == null) {
+ this.player.connection.ackBlockChangesUpTo(packet.getSequence());
+ return;
+ }
+ // Paper end - Don't allow digging into unloaded chunks
this.player.gameMode.handleBlockBreakAction(blockposition, packetplayinblockdig_enumplayerdigtype, packet.getDirection(), this.player.level().getMaxY(), packet.getSequence());
this.player.connection.ackBlockChangesUpTo(packet.getSequence());
return;
this.player.gameMode.handleBlockBreakAction(blockposition, packetplayinblockdig_enumplayerdigtype, packet.getDirection(), this.player.level().getMaxY(), packet.getSequence());
this.player.connection.ackBlockChangesUpTo(packet.getSequence());
return;

View file

@ -19,7 +19,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ // this.setBoundingBox(this.makeBoundingBox()); // Paper - Block invalid positions and bounding box; move into setPosRaw
}
protected AABB makeBoundingBox() {
protected final AABB makeBoundingBox() {
@@ -0,0 +0,0 @@ public abstract class Entity implements SyncedDataHolder, Nameable, EntityAccess
return this.getZ((2.0D * this.random.nextDouble() - 1.0D) * widthScale);
}

View file

@ -20,7 +20,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
+ // Paper start - Particle API
+ return this.sendParticlesSource(this.players, sender, t0, flag, flag1, d0, d1, d2, i, d3, d4, d5, d6);
+ }
+ public <T extends ParticleOptions> int sendParticlesSource(List<ServerPlayer> receivers, ServerPlayer sender, T t0, boolean flag, boolean flag1, double d0, double d1, double d2, int i, double d3, double d4, double d5, double d6) {
+ public <T extends ParticleOptions> int sendParticlesSource(List<ServerPlayer> receivers, @Nullable ServerPlayer sender, T t0, boolean flag, boolean flag1, double d0, double d1, double d2, int i, double d3, double d4, double d5, double d6) {
+ // Paper end - Particle API
// CraftBukkit end
ClientboundLevelParticlesPacket packetplayoutworldparticles = new ClientboundLevelParticlesPacket(t0, flag, flag1, d0, d1, d2, (float) d3, (float) d4, (float) d5, (float) d6, i);

View file

@ -12,8 +12,8 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
@Override
public <T> void spawnParticle(Particle particle, double x, double y, double z, int count, double offsetX, double offsetY, double offsetZ, double extra, T data, boolean force) {
- ClientboundLevelParticlesPacket packetplayoutworldparticles = new ClientboundLevelParticlesPacket(CraftParticle.createParticleParam(particle, data), force, (float) x, (float) y, (float) z, (float) offsetX, (float) offsetY, (float) offsetZ, (float) extra, count);
+ ClientboundLevelParticlesPacket packetplayoutworldparticles = new ClientboundLevelParticlesPacket(CraftParticle.createParticleParam(particle, data), force, x, y, z, (float) offsetX, (float) offsetY, (float) offsetZ, (float) extra, count); // Paper - fix x/y/z precision loss
- ClientboundLevelParticlesPacket packetplayoutworldparticles = new ClientboundLevelParticlesPacket(CraftParticle.createParticleParam(particle, data), false, force, (float) x, (float) y, (float) z, (float) offsetX, (float) offsetY, (float) offsetZ, (float) extra, count);
+ ClientboundLevelParticlesPacket packetplayoutworldparticles = new ClientboundLevelParticlesPacket(CraftParticle.createParticleParam(particle, data), false, force, x, y, z, (float) offsetX, (float) offsetY, (float) offsetZ, (float) extra, count); // Paper - fix x/y/z precision loss
this.getHandle().connection.send(packetplayoutworldparticles);
}

Some files were not shown because too many files have changed in this diff Show more