Puzzle 1.4.1 patch update for 1.18

Fixes #52 and #48
Thanks to @VladTheSheep
This commit is contained in:
Motschen
2022-10-01 10:59:45 +02:00
parent aea7c56f31
commit aae4f69f9d
2 changed files with 2 additions and 2 deletions

View File

@@ -8,7 +8,7 @@ org.gradle.jvmargs=-Xmx4G
loader_version=0.14.8
# Mod Properties
mod_version = 1.4.0-1.18
mod_version = 1.4.1-1.18
maven_group = net.puzzlemc
archives_base_name = puzzle

View File

@@ -268,7 +268,7 @@ public class PuzzleClient implements ClientModInitializer {
ETFApi.saveETFConfigChangesAndResetETF();
}));
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.entity_texture_features.full_bright_emissives.title"), (button) -> button.setMessage(etfConfig.fullBrightEmissives ? Text.of("Brighter") : Text.of("Default")), (button) -> {
etfConfig.fullBrightEmissives = !etfConfig.fullBrightEmissives ;
etfConfig.fullBrightEmissives = !etfConfig.fullBrightEmissives;
ETFApi.saveETFConfigChangesAndResetETF();
}));
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.entity_texture_features.blinking_mob_settings.title"), (button) -> button.setMessage(etfConfig.enableBlinking ? YES : NO), (button) -> {