Skip to content

Commit

Permalink
Release v2.10.2+fabric
Browse files Browse the repository at this point in the history
Fixed a minor Mixin mistake.
  • Loading branch information
TheCSDev committed Jun 23, 2023
1 parent 095eef1 commit 4a47db9
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion tcdcommons-1.20.1/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ org.gradle.jvmargs=-Xmx1G
It aims to improve performance by avoiding rewriting the same code, and to speed up the mod development process.

mod_author = TheCSDev
mod_version = 2.10.1+1.20.1
mod_version = 2.10.2+1.20.1

mod_contact_homepage = https://github.com/TheCSDev
mod_contact_sources = https://github.com/TheCSDev/mc-tcdcommons
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import io.github.thecsdev.tcdcommons.TCDCommons;
import io.github.thecsdev.tcdcommons.api.client.gui.screen.TScreen;
import io.github.thecsdev.tcdcommons.api.client.gui.util.HorizontalAlignment;
import io.github.thecsdev.tcdcommons.mixin.hooks.MixinDrawContext;
import io.github.thecsdev.tcdcommons.client.mixin.hooks.MixinDrawContext;
import net.minecraft.client.font.TextRenderer;
import net.minecraft.client.gui.DrawContext;
import net.minecraft.text.Text;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package io.github.thecsdev.tcdcommons.mixin.hooks;
package io.github.thecsdev.tcdcommons.client.mixin.hooks;

import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.Mutable;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"minVersion": "0.8",
"package": "io.github.thecsdev.tcdcommons.client.mixin.hooks",
"compatibilityLevel": "JAVA_17",
"client": ["MixinButtonWidget", "MixinGridWidget"],
"client": ["MixinButtonWidget", "MixinGridWidget", "MixinDrawContext"],
"injectors": { "defaultRequire": 1 }
}
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"minVersion": "0.8",
"package": "io.github.thecsdev.tcdcommons.mixin.hooks",
"compatibilityLevel": "JAVA_17",
"mixins": ["MixinBiomeAccess", "MixinStatHandler", "MixinArgumentTypes", "MixinDrawContext"],
"mixins": ["MixinBiomeAccess", "MixinStatHandler", "MixinArgumentTypes"],
"injectors": { "defaultRequire": 1 }
}

0 comments on commit 4a47db9

Please sign in to comment.