mirror of
https://github.com/PurpurMC/Purpur.git
synced 2026-02-17 16:37:43 +01:00
Updated Upstream (Paper)
Upstream has released updates that appear to apply and compile correctly Paper Changes: PaperMC/Paper@102c8bbc Add config for updating equipment on player actions (#12275) PaperMC/Paper@f0388e2f Call EntityPushedByEntityAttackEvent for Mace AoE (#12257) PaperMC/Paper@c37b890c More deferred requireNonNull message creation PaperMC/Paper@310f5229 Add unsupported config option and internal API to simplify remote item matching PaperMC/Paper@6ea42025 Send all attributes on respawn (#12274) PaperMC/Paper@2d3a1385 [ci/skip] Refine recipe management API documentation. (#12287) PaperMC/Paper@aaaeb4e1 [ci/skip] Make compilation logs actually readable (#12276) PaperMC/Paper@bb1beda6 feat: add event to wind charge explode (#12248) PaperMC/Paper@9f004614 Update a whole lot of deprecated annotations PaperMC/Paper@72f13f8b [ci/skip] Mention API Checks for CONTRIBUTING.md (#12315) PaperMC/Paper@7cc6cb50 Check for trailing input in ItemFactory#createItemStack (#12312) PaperMC/Paper@f49d18df Add get/set customName to Skull block (#12302) PaperMC/Paper@894631f0 Make advancement ordering predictable (#12292) PaperMC/Paper@2aad131e Add config option for command spam whitelist PaperMC/Paper@bb3b7e69 Fix annotation mistakes PaperMC/Paper@058455e4 InventoryView QOL open method (#12282) PaperMC/Paper@f2258582 Fix firework entity not being removed when FireworkExplodeEvent is cancelled (#12268) PaperMC/Paper@7819df10 Add getHeight method to ChunkData (#12311) PaperMC/Paper@37b9ca1f Add flush parameter to World#save (#12330) PaperMC/Paper@515e12ca Check if BUNDLE_CONTENTS is present in InventoryClickEvent (#12321) PaperMC/Paper@5a6ab97b Add config to remove player as vehicle restriction in /ride (#12327) PaperMC/Paper@c467df95 Add ItemStack#copyDataFrom (#12224) PaperMC/Paper@78af68b6 fix some ticket related decompile errors PaperMC/Paper@ce3ede47 Server now says yes to movement PaperMC/Paper@eafb6c29 Merge remote-tracking branch 'up/main' into update/1.21.5 PaperMC/Paper@5ef8349e Merge remote-tracking branch 'up/update/1.21.5' into update/1.21.5 PaperMC/Paper@1111f183 Update remote item matching option PaperMC/Paper@58554542 Fix oopsie PaperMC/Paper@b8078d38 Update to 1.21.5-rc2 PaperMC/Paper@a776d7a9 update entity effect PaperMC/Paper@67cc0e5f bump built-in datapack version PaperMC/Paper@28daa6ce update adventure codecs, fixes click and hover events PaperMC/Paper@e50bb66a make Phantom#anchorPoint nullable
This commit is contained in:
@@ -1,19 +1,9 @@
|
||||
--- a/paper-server/build.gradle.kts
|
||||
+++ b/paper-server/build.gradle.kts
|
||||
@@ -18,11 +_,21 @@
|
||||
@@ -24,6 +_,16 @@
|
||||
// oldPaperCommit = "f4f275519f7c1fbe9db173b7144a4fe81440e365"
|
||||
//}
|
||||
|
||||
paperweight {
|
||||
minecraftVersion = providers.gradleProperty("mcVersion")
|
||||
- gitFilePatches = false
|
||||
-
|
||||
- updatingMinecraft {
|
||||
- oldPaperCommit = "f4f275519f7c1fbe9db173b7144a4fe81440e365"
|
||||
+ //gitFilePatches = true
|
||||
+
|
||||
+ //updatingMinecraft {
|
||||
+ // oldPaperCommit = "f4f275519f7c1fbe9db173b7144a4fe81440e365"
|
||||
+ //}
|
||||
+
|
||||
+ val purpur = forks.register("purpur") {
|
||||
+ upstream.patchDir("paperServer") {
|
||||
+ upstreamPath = "paper-server"
|
||||
@@ -21,11 +11,12 @@
|
||||
+ patchesDir = rootDirectory.dir("purpur-server/paper-patches")
|
||||
+ outputDir = rootDirectory.dir("paper-server")
|
||||
+ }
|
||||
}
|
||||
+ }
|
||||
+ activeFork = purpur
|
||||
|
||||
+
|
||||
spigot {
|
||||
buildDataRef = "3edaf46ec1eed4115ce1b18d2846cded42577e42"
|
||||
packageVersion = "v1_21_R3" // also needs to be updated in MappingEnvironment
|
||||
@@ -104,7 +_,21 @@
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user