Skip to content

Commit

Permalink
🔧 Test
Browse files Browse the repository at this point in the history
  • Loading branch information
XyperCode committed Jan 11, 2024
1 parent c77aba1 commit 2c53847
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public class McWindowMixin {
return capabilities;
}

@Inject(method = "setIcon", at = @At("HEAD"), remap = false, cancellable = true)
@Inject(method = "setIcon", at = @At("HEAD"), cancellable = true)
private void gdx_minecraft$injectSetIcon(PackResources packResources, IconSet iconSet, CallbackInfo ci) {
ci.cancel();
}
Expand Down
1 change: 1 addition & 0 deletions common/src/main/resources/gdx_minecraft-common.mixins.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
{
"required": true,
"refmap": "gdx-minecraft-common-refmap.json",
"minVersion": "0.8",
"package": "io.github.ultreon.gdxminecraft.mixin",
"compatibilityLevel": "JAVA_17",
Expand Down
2 changes: 2 additions & 0 deletions fabric/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,8 @@ dependencies {
include implementation(api("com.badlogicgames.gdx:gdx-backend-lwjgl3:$gdx_version"))
include implementation(api("com.badlogicgames.gdx:gdx:$gdx_version"))
include implementation(api("com.badlogicgames.gdx:gdx-platform:$gdx_version:natives-desktop"))
include implementation(api("com.badlogicgames.gdx:gdx-jnigen-loader:2.3.1"))
include implementation(api("com.badlogicgames.jlayer:jlayer:1.0.1-gdx"))

}

Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
org.gradle.jvmargs=-Xmx1G
org.gradle.jvmargs=-Xmx3G

minecraft_version=1.20.2

archives_base_name=gdx-minecraft
mod_version=0.1.0
mod_version=0.1.0+devtest.2
maven_group=io.github.ultreon

architectury_version=${ARCHITECTURY_API_VERSION}
Expand Down

0 comments on commit 2c53847

Please sign in to comment.