forked from kaboom-fabric/extras
block /debugdim
This commit is contained in:
parent
9e8c3333c0
commit
e4e49f10e2
2 changed files with 18 additions and 1 deletions
|
@ -0,0 +1,16 @@
|
||||||
|
package land.chipmunk.kaboomfabric.extras.mixin;
|
||||||
|
|
||||||
|
import org.spongepowered.asm.mixin.Mixin;
|
||||||
|
import org.spongepowered.asm.mixin.injection.At;
|
||||||
|
import org.spongepowered.asm.mixin.injection.Inject;
|
||||||
|
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
|
||||||
|
import com.mojang.brigadier.CommandDispatcher;
|
||||||
|
import net.minecraft.server.command.ServerCommandSource;
|
||||||
|
|
||||||
|
@Mixin(net.minecraft.server.command.DebugDimCommand.class)
|
||||||
|
public abstract class DebugDimCommandMixin {
|
||||||
|
@Inject(at = @At("HEAD"), method = "register", cancellable = true)
|
||||||
|
private static void register (CommandDispatcher<ServerCommandSource> dispatcher, CallbackInfo info) {
|
||||||
|
info.cancel();
|
||||||
|
}
|
||||||
|
}
|
|
@ -12,7 +12,8 @@
|
||||||
"OpCommandMixin",
|
"OpCommandMixin",
|
||||||
"EntitySelectorMixin",
|
"EntitySelectorMixin",
|
||||||
"ServerWorldAccessor",
|
"ServerWorldAccessor",
|
||||||
"EntityAccessor"
|
"EntityAccessor",
|
||||||
|
"DebugDimCommandMixin"
|
||||||
],
|
],
|
||||||
"injectors": {
|
"injectors": {
|
||||||
"defaultRequire": 1
|
"defaultRequire": 1
|
||||||
|
|
Loading…
Reference in a new issue