Skip to content

Commit f69ea81

Browse files
committed
Updated Upstream (Leaf)
1 parent c0e0dbf commit f69ea81

File tree

4 files changed

+6
-9
lines changed

4 files changed

+6
-9
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ jobs:
44
build:
55
runs-on: ubuntu-latest
66
steps:
7-
- uses: actions/checkout@v4.2.2
7+
- uses: actions/checkout@v5.0.0
88
- name: Set up JDK 21
99
uses: actions/[email protected]
1010
with:

build-data/dev-imports.txt

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,4 @@
44
# both fully qualified and a file based syntax are accepted for <fileName>:
55
# authlib com/mojang/authlib/yggdrasil/YggdrasilGameProfileRepository.java
66
# datafixerupper com.mojang.datafixers.DataFixerBuilder
7-
# datafixerupper com/mojang/datafixers/util/Either.java
8-
# To import classes from the vanilla Minecraft jar use `minecraft` as the artifactId:
9-
# minecraft net.minecraft.world.level.entity.LevelEntityGetterAdapter
10-
# minecraft net/minecraft/world/level/entity/LevelEntityGetter.java
7+
# datafixerupper com/mojang/datafixers/util/Either.java

deepslateMC-server/minecraft-patches/sources/net/minecraft/server/MinecraftServer.java.patch

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
--- a/net/minecraft/server/MinecraftServer.java
22
+++ b/net/minecraft/server/MinecraftServer.java
3-
@@ -1207,6 +_,7 @@
3+
@@ -1206,6 +_,7 @@
44
// Paper end
55
org.spigotmc.WatchdogThread.hasStarted = true; // Paper
66
org.dreeam.leaf.config.LeafConfig.regSparkExtraConfig(); // Leaf - Leaf config
77
+ de.pascalpex.deepslatemc.files.Config.addSparkEntry(); // Deepslate - add deepslate.yml to spark
88
Arrays.fill(this.recentTps, 20);
99
// Paper start - further improve server tick loop
1010
long tickSection = Util.getNanos();
11-
@@ -1665,6 +_,19 @@
11+
@@ -1664,6 +_,19 @@
1212
private ServerStatus.Players buildPlayerStatus() {
1313
List<ServerPlayer> players = this.playerList.realPlayers; // Leaves - only real player
1414
int maxPlayers = this.getMaxPlayers();
@@ -28,7 +28,7 @@
2828
if (this.hidesOnlinePlayers()) {
2929
return new ServerStatus.Players(maxPlayers, players.size(), List.of());
3030
} else {
31-
@@ -2089,7 +_,18 @@
31+
@@ -2094,7 +_,18 @@
3232

3333
public void setMotd(String motd) {
3434
// Paper start - Adventure

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=86c87e1ba03840470ed21d6dc872463a9d579edf
4+
leafRef=fad6c18ca15b8e2b0482756945dfc1b0883b5d5c
55

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

0 commit comments

Comments
 (0)