Skip to content

Commit 33e752b

Browse files
committed
Remove noxesium compat mixin
1 parent ee2098c commit 33e752b

File tree

6 files changed

+1
-112
lines changed

6 files changed

+1
-112
lines changed

api/build.gradle.kts

-10
Original file line numberDiff line numberDiff line change
@@ -41,18 +41,8 @@ tasks {
4141
}
4242
}
4343
}
44-
45-
test {
46-
useJUnitPlatform()
47-
}
48-
}
49-
50-
repositories {
51-
maven("https://maven.noxcrew.com/public")
5244
}
5345

5446
dependencies {
5547
compileOnly("org.jetbrains:annotations:24.0.1")
56-
modCompileOnly(libs.noxesium) { isTransitive = false }
57-
testImplementation(kotlin("test"))
5848
}

api/src/main/java/com/noxcrew/sheeplib/mixin/GuiMixin.java

-12
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,6 @@
1212
*/
1313
@Mixin(Gui.class)
1414
public class GuiMixin {
15-
// @SuppressWarnings("InvalidInjectorMethodSignature")
16-
// @Inject(
17-
// method = "render",
18-
// at = @At(
19-
// value = "INVOKE",
20-
// target = "Lnet/minecraft/client/gui/components/ChatComponent;render(Lnet/minecraft/client/gui/GuiGraphics;III)V"
21-
// ),
22-
// locals = LocalCapture.CAPTURE_FAILHARD)
23-
// public void render(GuiGraphics guiGraphics, float f, CallbackInfo ci, Window window, Scoreboard scoreboard, int o, int q) {
24-
// DialogContainer.INSTANCE.render(guiGraphics, o, q, 0);
25-
// }
26-
2715
@ModifyExpressionValue(
2816
method="<init>",
2917
at = @At(

api/src/main/java/com/noxcrew/sheeplib/mixin/NoxesiumCompatGuiMixin.java

-41
This file was deleted.

api/src/main/kotlin/com/noxcrew/sheeplib/SheepLibMixinPlugin.kt

-45
This file was deleted.

api/src/main/resources/sheeplib.mixins.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@
33
"client": [
44
"ChatScreenMixin",
55
"GuiMixin",
6-
"NoxesiumCompatGuiMixin",
76
"StringWidgetMixin"
8-
],
9-
"plugin": "com.noxcrew.sheeplib.SheepLibMixinPlugin"
7+
]
108
}

gradle/libs.versions.toml

-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ fabric-loom = "1.6-SNAPSHOT"
77
kotlin = "1.9.23"
88
fabric-kotlin = "1.10.19+kotlin.1.9.23"
99
coroutines = "1.7.3"
10-
noxesium = "2.0.2"
1110

1211
jb-annotations = "24.0.1"
1312

0 commit comments

Comments
 (0)