Skip to content

Commit 22587b5

Browse files
committed
Updated Upstream (Dreeam)
1 parent 5793a55 commit 22587b5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import org.gradle.api.tasks.testing.logging.TestExceptionFormat
22
import org.gradle.api.tasks.testing.logging.TestLogEvent
33

44
plugins {
5-
id("io.papermc.paperweight.patcher") version "2.0.0-beta.18"
5+
id("io.papermc.paperweight.patcher") version "2.0.0-beta.19"
66
}
77

88
paperweight {

deepslateMC-server/build.gradle.kts.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656

5757
// Leaf start - Libraries
5858
implementation("com.github.thatsmusic99:ConfigurationMaster-API:v2.0.0-rc.3") { // Leaf config
59-
@@ -270,14 +_,14 @@
59+
@@ -271,14 +_,14 @@
6060
val gitBranch = git.exec(providers, "rev-parse", "--abbrev-ref", "HEAD").get().trim()
6161
attributes(
6262
"Main-Class" to "org.bukkit.craftbukkit.Main",

deepslateMC-server/minecraft-patches/sources/net/minecraft/server/dedicated/DedicatedServer.java.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
--- a/net/minecraft/server/dedicated/DedicatedServer.java
22
+++ b/net/minecraft/server/dedicated/DedicatedServer.java
3-
@@ -187,6 +_,8 @@
3+
@@ -186,6 +_,8 @@
4+
org.spigotmc.WatchdogThread.doStart(org.spigotmc.SpigotConfig.timeoutTime, org.spigotmc.SpigotConfig.restartOnCrash); // Paper - start watchdog thread
45
thread.start(); // Paper - Enhance console tab completions for brigadier commands; start console thread after MinecraftServer.console & PaperConfig are initialized
56
io.papermc.paper.command.PaperCommands.registerCommands(this); // Paper - setup /paper command
6-
org.dreeam.leaf.command.LeafCommands.registerCommands(this); // Leaf - Leaf commands
77
+ de.pascalpex.deepslatemc.commands.DeepslateCmdRegisterer.registerCommands(this); // Deepslate - register commands
88
+ de.pascalpex.deepslatemc.util.ActionbarUtil.reloadActionbar(); // Deepslate - load actionbar
99
this.server.spark.registerCommandBeforePlugins(this.server); // Paper - spark

deepslateMC-server/paper-patches/files/src/main/java/io/papermc/paper/ServerBuildInfoImpl.java.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
@@ -37,6 +_,7 @@
44
private static final String BRAND_PURPUR_NAME = "Purpur";
55
private static final String BRAND_LEAF_NAME = "Leaf";
6-
// Leaf end - Rebrand & Fix Pufferfish and Purpur patches
6+
// Leaf end - Rebrand
77
+ private static final String BRAND_DEEPSLATE_NAME = "DeepslateMC"; // Deepslate
88

99
private static final String BUILD_DEV = "DEV";
@@ -27,6 +27,6 @@
2727
- || brandId.equals(BRAND_PURPUR_ID);
2828
+ || brandId.equals(BRAND_PURPUR_ID)
2929
+ || brandId.equals(BRAND_LEAF_ID); // Deepslate
30-
// Leaf end - Rebrand & Fix Pufferfish and Purpur patches
30+
// Leaf end - Rebrand
3131
}
3232

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
group=de.pascalpex.deepslatemc
22
version=1.21.8-R0.1-SNAPSHOT
33
mcVersion=1.21.8
4-
leafRef=f1e884e0fc3edcc79f418dfc22d42b48f9ce24fd
4+
leafRef=54acfa128e9784855aabf74aa3b8e5a2d643aa83
55

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

0 commit comments

Comments
 (0)