Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Add files via upload
  • Loading branch information
Mickey42302 authored Jul 10, 2025
commit 12f260b11f2bde88b2897e430e5e2da72b043480
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
From: Mickey42302 <bgoodwin423@gmail.com>
Date: Wed, 9 Jul 2025 21:48:39 -0400
Subject: [PATCH] Allow enabling /chase


diff --git a/net/minecraft/commands/Commands.java b/net/minecraft/commands/Commands.java
index c638d30ba12bde2ae9d55b1c579129d40bcc8b1e..858798ccf1f90aa0b1dbd74072b11f6b85d04300 100644
--- a/net/minecraft/commands/Commands.java
+++ b/net/minecraft/commands/Commands.java
@@ -53,6 +53,7 @@ import net.minecraft.server.commands.BanIpCommands;
import net.minecraft.server.commands.BanListCommands;
import net.minecraft.server.commands.BanPlayerCommands;
import net.minecraft.server.commands.BossBarCommands;
+import net.minecraft.server.commands.ChaseCommand;
import net.minecraft.server.commands.ClearInventoryCommands;
import net.minecraft.server.commands.CloneCommands;
import net.minecraft.server.commands.DamageCommand;
@@ -264,6 +265,10 @@ public class Commands {
}
}

+ if (org.purpurmc.purpur.PurpurConfig.registerMinecraftDebugCommands) { // Purpur - register disabled minecraft commands
+ ChaseCommand.register(this.dispatcher);
+ }
+
if (selection.includeDedicated) {
BanIpCommands.register(this.dispatcher);
BanListCommands.register(this.dispatcher);