Skip to content

Commit 25d39e9

Browse files
committed
Updated Upstream (Paper)
Upstream has released updates that appear to apply and compile correctly Paper Changes: PaperMC/Paper@8c313fb3 properly override removePassenger for happy ghast PaperMC/Paper@87d0fdd8 happy ghast is a vehicle PaperMC/Paper@a38aeef6 fix indices for horse inventories getItem PaperMC/Paper@96d739c1 rename RegistryFreezeEvent to RegistryComposeEvent PaperMC/Paper@1102e7b8 fix Equippable#shearSound PaperMC/Paper@f961ed57 update to rc1 PaperMC/Paper@c3467554 bump built-in datapack version
1 parent 5cd1961 commit 25d39e9

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
group = org.purpurmc.purpur
22
version = 1.21.6-R0.1-SNAPSHOT
33

4-
mcVersion = 1.21.6-pre4
5-
paperCommit = 569c3231fb742fdd79af1d115398c1efae48bd90
4+
mcVersion = 1.21.6-rc1
5+
paperCommit = c34675541790bbd245f0cee60793c006bdf773bc
66

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

purpur-server/paper-patches/files/src/main/java/org/bukkit/craftbukkit/Main.java.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,14 +5,14 @@
55
.describedAs("Jar file");
66

77
+ // Purpur start - Purpur config files
8-
+ acceptsAll(asList("purpur", "purpur-settings"), "File for purpur settings")
8+
+ this.acceptsAll(asList("purpur", "purpur-settings"), "File for purpur settings")
99
+ .withRequiredArg()
1010
+ .ofType(File.class)
1111
+ .defaultsTo(new File("purpur.yml"))
1212
+ .describedAs("Yml file");
1313
+ // Purpur end - Purpur config files
1414
+
15-
acceptsAll(asList("server-name"), "Name of the server")
15+
this.accepts("server-name", "Name of the server")
1616
.withRequiredArg()
1717
.ofType(String.class)
1818
@@ -223,7 +_,7 @@

0 commit comments

Comments
 (0)