Skip to content

Commit

Permalink
Start work on cleaning up config
Browse files Browse the repository at this point in the history
  • Loading branch information
lowercasebtw committed Dec 23, 2024
1 parent 12c8dc9 commit 177c02e
Show file tree
Hide file tree
Showing 5 changed files with 482 additions and 447 deletions.
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ yarn_mappings=1.21.4+build.2
loader_version=0.16.9

# Dependencies
fabric_api_version=
fabric_kotlin_version=1.13.0+kotlin.2.1.0
modmenu_version=13.0.0-beta.1
yacl_version=3.6.2+1.21.4-fabric
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,4 +17,13 @@ public abstract class MixinChatScreen {
// context.getMatrices().translate(0F, 12F, 0F);
// }
// }

// @WrapOperation(method = "render", at = @At(value = "INVOKE", target = "Lnet/minecraft/client/gui/hud/ChatHud;getIndicatorAt(DD)Lnet/minecraft/client/gui/hud/MessageIndicator;"))
// private MessageIndicator animatium$(ChatHud instance, double mouseX, double mouseY, Operation<MessageIndicator> original) {
// if (true) {
// return null;
// } else {
// return original.call(instance, mouseX, mouseY);
// }
// }
}
4 changes: 4 additions & 0 deletions src/main/kotlin/me/mixces/animatium/AnimatiumClient.kt
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,9 @@ class AnimatiumClient : ClientModInitializer {

override fun onInitializeClient() {
AnimatiumConfig.load()
initializeCommands()
}

fun initializeCommands() {
}
}
Loading

0 comments on commit 177c02e

Please sign in to comment.