Skip to content

Commit

Permalink
rename&build
Browse files Browse the repository at this point in the history
  • Loading branch information
hugeBlack committed Feb 16, 2021
1 parent 41d44a9 commit 26553f8
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 33 deletions.
3 changes: 3 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,9 @@ jar {
from("LICENSE") {
rename { "${it}_${project.archivesBaseName}"}
}
from {
configurations.compile.collect { it.isDirectory() ? it : zipTree(it) }
}
}

// configure the maven publication
Expand Down
9 changes: 0 additions & 9 deletions package.json

This file was deleted.

18 changes: 0 additions & 18 deletions src/main/java/com/hb/mcfdebugger/a.java

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,19 +1,15 @@
package com.hb.mcfdebugger.mixin;

import com.hb.mcfdebugger.McfDebugger;
import com.hb.mcfdebugger.SendCmdObj;
import net.minecraft.server.command.FunctionCommand;
import net.minecraft.server.command.ServerCommandSource;
import net.minecraft.server.function.CommandFunction;
import net.minecraft.text.TranslatableText;
import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Overwrite;
import com.hb.mcfdebugger.a;

import java.lang.reflect.Field;
import java.util.Collection;
import java.util.Iterator;
import java.util.LinkedList;

@Mixin(FunctionCommand.class)
public class FunctionCommandHook {
Expand Down
1 change: 0 additions & 1 deletion src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@

"depends": {
"fabricloader": ">=0.7.4",
"fabric": "*",
"minecraft": "1.16.x"
},
"suggests": {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/mcfdebugger.mixins.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"compatibilityLevel": "JAVA_8",
"mixins": [
"regcmd",
"debugHook",
"DebugHook",
"CommandFunctionManagerHook",
"SetCommandIndex",
"FunctionLoaderHook",
Expand Down

0 comments on commit 26553f8

Please sign in to comment.