-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
755fa2e
commit 195dfd4
Showing
2 changed files
with
38 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: "Sofiane H. Djerbi" <[email protected]> | ||
Date: Sun, 9 Jul 2023 19:17:40 +0300 | ||
Subject: [PATCH] Add back worldborder command | ||
|
||
|
||
diff --git a/src/main/java/net/minecraft/commands/Commands.java b/src/main/java/net/minecraft/commands/Commands.java | ||
index 681cd79ce24fe5d952e987d46e2fd8df07a0f8a1..68af43ed4d667648df0e45ffc899d3e4b7b1a69d 100644 | ||
--- a/src/main/java/net/minecraft/commands/Commands.java | ||
+++ b/src/main/java/net/minecraft/commands/Commands.java | ||
@@ -199,7 +199,7 @@ public class Commands { | ||
TitleCommand.register(this.dispatcher); | ||
//TriggerCommand.register(this.dispatcher); // Folia - region threading - TODO later | ||
WeatherCommand.register(this.dispatcher); | ||
- //WorldBorderCommand.register(this.dispatcher); // Folia - region threading - TODO later | ||
+ WorldBorderCommand.register(this.dispatcher); // Folia - region threading - TODO later // Kaiiju | ||
if (JvmProfiler.INSTANCE.isAvailable()) { | ||
JfrCommand.register(this.dispatcher); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: "Sofiane H. Djerbi" <[email protected]> | ||
Date: Sun, 9 Jul 2023 19:18:42 +0300 | ||
Subject: [PATCH] Add back data command | ||
|
||
|
||
diff --git a/src/main/java/net/minecraft/commands/Commands.java b/src/main/java/net/minecraft/commands/Commands.java | ||
index 68af43ed4d667648df0e45ffc899d3e4b7b1a69d..44576310cc5b89c287b0ab7ba1a99d76b67f33dd 100644 | ||
--- a/src/main/java/net/minecraft/commands/Commands.java | ||
+++ b/src/main/java/net/minecraft/commands/Commands.java | ||
@@ -148,7 +148,7 @@ public class Commands { | ||
ClearInventoryCommands.register(this.dispatcher, commandRegistryAccess); | ||
//CloneCommands.register(this.dispatcher, commandRegistryAccess); // Folia - region threading - TODO | ||
DamageCommand.register(this.dispatcher, commandRegistryAccess); | ||
- //DataCommands.register(this.dispatcher); // Folia - region threading - TODO | ||
+ DataCommands.register(this.dispatcher); // Folia - region threading - TODO // Kaiiju | ||
//DataPackCommand.register(this.dispatcher); // Folia - region threading - TODO | ||
//DebugCommand.register(this.dispatcher); // Folia - region threading - TODO | ||
DefaultGameModeCommands.register(this.dispatcher); |