Skip to content

Commit c39c270

Browse files
committed
Updated Upstream (Paper)
Upstream has released updates that appear to apply and compile correctly Paper Changes: PaperMC/Paper@73d218c1 Improve command permission lookups PaperMC/Paper@7c2ffd5e Prune the api version suffix PaperMC/Paper@c609d6dc Remove SERVER_ONLY command flag functionality PaperMC/Paper@3594d24a Properly send over SADDLE and BODY equipment items to PlayerInventory PaperMC/Paper@720e63ff Remove craft flying PaperMC/Paper@1e441025 Removed inlined art api PaperMC/Paper@adb5aefc Add api for shear equippable logic PaperMC/Paper@4604c5f2 Change ordering on YamlSanitizationTest PaperMC/Paper@c986ce54 Fix V4307 ordering issues PaperMC/Paper@48e94e8c fix sponge absorb resetting block entity data of waterlogged blocks PaperMC/Paper@c5fc0dc8 support block state mutation of already placed block entity in BlockStateListPopulator
1 parent 8dfb6bd commit c39c270

6 files changed

Lines changed: 8 additions & 28 deletions

File tree

.idea/runConfigurations/Run_Purpur_Paperclip_Jar.xml

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ group = org.purpurmc.purpur
22
version = 1.21.6-R0.1-SNAPSHOT
33

44
mcVersion = 1.21.6-pre3
5-
paperCommit = 94fefb88e6af6e7699d16d949dc4cee88e0c4a1b
5+
paperCommit = c5fc0dc84b2e9f875b7dc03ed75cf6744abc4902
66

77
org.gradle.configuration-cache = true
88
org.gradle.caching = true

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
--- a/net/minecraft/commands/CommandSourceStack.java
22
+++ b/net/minecraft/commands/CommandSourceStack.java
3-
@@ -457,6 +_,19 @@
3+
@@ -447,6 +_,19 @@
44
}
55
// CraftBukkit end
66

@@ -20,7 +20,7 @@
2020
public Vec3 getPosition() {
2121
return this.worldPosition;
2222
}
23-
@@ -541,6 +_,30 @@
23+
@@ -531,6 +_,30 @@
2424
}
2525
}
2626
}

purpur-server/minecraft-patches/sources/net/minecraft/commands/Commands.java.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,15 @@
2424
}
2525

2626
if (selection.includeIntegrated) {
27-
@@ -535,6 +_,7 @@
27+
@@ -537,6 +_,7 @@
2828
private void runSync(ServerPlayer player, java.util.Collection<String> bukkit, RootCommandNode<CommandSourceStack> rootCommandNode) {
2929
// Paper end - Perf: Async command map building
3030
new com.destroystokyo.paper.event.brigadier.AsyncPlayerSendCommandsEvent<CommandSourceStack>(player.getBukkitEntity(), (RootCommandNode) rootCommandNode, true).callEvent(); // Paper - Brigadier API
3131
+ if (org.bukkit.event.player.PlayerCommandSendEvent.getHandlerList().getRegisteredListeners().length > 0) { // Purpur - Skip events if there's no listeners
3232
org.bukkit.event.player.PlayerCommandSendEvent event = new org.bukkit.event.player.PlayerCommandSendEvent(player.getBukkitEntity(), new java.util.LinkedHashSet<>(bukkit));
3333
event.getPlayer().getServer().getPluginManager().callEvent(event);
3434

35-
@@ -545,6 +_,8 @@
35+
@@ -547,6 +_,8 @@
3636
}
3737
}
3838
// CraftBukkit end

purpur-server/minecraft-patches/sources/net/minecraft/world/level/Level.java.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
this.generator = generator;
6666
this.world = new CraftWorld((ServerLevel) this, generator, biomeProvider, environment);
6767

68-
@@ -2131,4 +_,14 @@
68+
@@ -2124,4 +_,14 @@
6969
return this.id;
7070
}
7171
}

purpur-server/paper-patches/features/0006-fix-tests.patch

Lines changed: 0 additions & 20 deletions
This file was deleted.

0 commit comments

Comments
 (0)