Skip to content

Commit

Permalink
update mafglib to 0.1.11
Browse files Browse the repository at this point in the history
  • Loading branch information
TexBlock committed Jan 30, 2024
1 parent 2ef1968 commit 4b538bd
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
## Change
- change modid to `tweakerge`
- update mafglib to `0.1.11`
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
plugins {
id "dev.architectury.loom" version "1.2-SNAPSHOT"
id "dev.architectury.loom" version "1.4-SNAPSHOT"
id "maven-publish"
id 'com.modrinth.minotaur' version '2.+'
id 'net.darkhax.curseforgegradle' version '1.+'
Expand Down
4 changes: 2 additions & 2 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ loom.platform=forge
yarn_mappings=1.19.4+build.1

# Mod Properties
mod_version=0.1.1
mod_version=0.1.2
maven_group=org.thinkingstudio.tweakerge
archives_base_name=Tweakerge
mod_id=tweakerge
Expand All @@ -21,4 +21,4 @@ loom.platform=forge
curseforge_id=915857

# Dependencies
malilib_version=0.1.9-mc1.19.4
malilib_version=0.1.11-mc1.19.4
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.4-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
6 changes: 3 additions & 3 deletions src/main/java/fi/dy/masa/tweakeroo/Tweakeroo.java
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package fi.dy.masa.tweakeroo;

import fi.dy.masa.malilib.compat.forge.ForgePlatformCompat;
import fi.dy.masa.malilib.compat.forge.ForgePlatformUtils;
import fi.dy.masa.tweakeroo.gui.GuiConfigs;
import net.minecraftforge.eventbus.api.IEventBus;
import net.minecraftforge.fml.common.Mod;
Expand All @@ -24,10 +24,10 @@ public Tweakeroo() {
}

public void onInitializeClient(FMLClientSetupEvent event) {
ForgePlatformCompat.getInstance().getModClientExtensionPoint();
ForgePlatformUtils.getInstance().getClientModIgnoredServerOnly();
InitializationHandler.getInstance().registerInitializationHandler(new InitHandler());

ForgePlatformCompat.getInstance().getMod(Reference.MOD_ID).registerModConfigScreen((screen) -> {
ForgePlatformUtils.getInstance().getMod(Reference.MOD_ID).registerModConfigScreen((screen) -> {
GuiConfigs gui = new GuiConfigs();
gui.setParent(screen);
return gui;
Expand Down
File renamed without changes.

0 comments on commit 4b538bd

Please sign in to comment.