|
|
|
|
@@ -16,6 +16,7 @@ import me.pepperbell.continuity.client.config.Option;
|
|
|
|
|
import net.dorianpb.cem.internal.config.CemConfig;
|
|
|
|
|
import net.dorianpb.cem.internal.config.CemConfigFairy;
|
|
|
|
|
import net.dorianpb.cem.internal.config.CemOptions;
|
|
|
|
|
import net.minecraft.text.TranslatableText;
|
|
|
|
|
import net.puzzlemc.core.config.PuzzleConfig;
|
|
|
|
|
import net.puzzlemc.gui.mixin.CemConfigAccessor;
|
|
|
|
|
import net.puzzlemc.gui.screen.widget.PuzzleWidget;
|
|
|
|
|
@@ -33,28 +34,28 @@ import io.github.kvverti.colormatic.ColormaticConfig;
|
|
|
|
|
public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
|
|
|
|
|
public final static String id = "puzzle";
|
|
|
|
|
public static final Text YES = Text.translatable("gui.yes").formatted(Formatting.GREEN);
|
|
|
|
|
public static final Text NO = Text.translatable("gui.no").formatted(Formatting.RED);
|
|
|
|
|
public static final Text YES = new TranslatableText("gui.yes").formatted(Formatting.GREEN);
|
|
|
|
|
public static final Text NO = new TranslatableText("gui.no").formatted(Formatting.RED);
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void onInitializeClient() {
|
|
|
|
|
MidnightLibClient.hiddenMods.add("puzzle");
|
|
|
|
|
MinecraftClient client = MinecraftClient.getInstance();
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.of("Puzzle")));
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("puzzle.option.check_for_updates"), (button) -> button.setMessage(PuzzleConfig.checkUpdates ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(new TranslatableText("puzzle.option.check_for_updates"), (button) -> button.setMessage(PuzzleConfig.checkUpdates ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleConfig.checkUpdates = !PuzzleConfig.checkUpdates;
|
|
|
|
|
PuzzleConfig.write(id);
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("puzzle.option.show_version_info"), (button) -> button.setMessage(PuzzleConfig.showPuzzleInfo ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(new TranslatableText("puzzle.option.show_version_info"), (button) -> button.setMessage(PuzzleConfig.showPuzzleInfo ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleConfig.showPuzzleInfo = !PuzzleConfig.showPuzzleInfo;
|
|
|
|
|
PuzzleConfig.write(id);
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(Text.translatable("puzzle.midnightconfig.title"), (button) -> button.setMessage(Text.of("OPEN")), (button) -> {
|
|
|
|
|
PuzzleApi.addToMiscOptions(new PuzzleWidget(new TranslatableText("puzzle.midnightconfig.title"), (button) -> button.setMessage(Text.of("OPEN")), (button) -> {
|
|
|
|
|
client.setScreen(PuzzleConfig.getScreen(client.currentScreen, "puzzle"));
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("Puzzle")));
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("puzzle-splashscreen") && !PuzzleConfig.disabledIntegrations.contains("puzzle-splashscreen")) {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("puzzle.option.resourcepack_splash_screen"), (button) -> button.setMessage(PuzzleConfig.resourcepackSplashScreen ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("puzzle.option.resourcepack_splash_screen"), (button) -> button.setMessage(PuzzleConfig.resourcepackSplashScreen ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleConfig.resourcepackSplashScreen = !PuzzleConfig.resourcepackSplashScreen;
|
|
|
|
|
PuzzleConfig.write(id);
|
|
|
|
|
PuzzleSplashScreen.resetColors();
|
|
|
|
|
@@ -62,11 +63,11 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
}));
|
|
|
|
|
}
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("puzzle-models") && !PuzzleConfig.disabledIntegrations.contains("puzzle-models")) {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("puzzle.option.unlimited_model_rotations"), (button) -> button.setMessage(PuzzleConfig.unlimitedRotations ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("puzzle.option.unlimited_model_rotations"), (button) -> button.setMessage(PuzzleConfig.unlimitedRotations ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleConfig.unlimitedRotations = !PuzzleConfig.unlimitedRotations;
|
|
|
|
|
PuzzleConfig.write(id);
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("puzzle.option.bigger_custom_models"), (button) -> button.setMessage(PuzzleConfig.biggerModels ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("puzzle.option.bigger_custom_models"), (button) -> button.setMessage(PuzzleConfig.biggerModels ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleConfig.biggerModels = !PuzzleConfig.biggerModels;
|
|
|
|
|
PuzzleConfig.write(id);
|
|
|
|
|
}));
|
|
|
|
|
@@ -179,34 +180,34 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
DynamicLightsConfig ldlConfig = LambDynLights.get().config;
|
|
|
|
|
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.of("LambDynamicLights")));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("lambdynlights.option.mode"), (button) -> button.setMessage(ldlConfig.getDynamicLightsMode().getTranslatedText()), (button) -> ldlConfig.setDynamicLightsMode(ldlConfig.getDynamicLightsMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("lambdynlights.option.light_sources.entities")), (button) -> button.setMessage(ldlConfig.getEntitiesLightSource().get() ? YES : NO), (button) -> ldlConfig.getEntitiesLightSource().set(!ldlConfig.getEntitiesLightSource().get())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("lambdynlights.option.light_sources.block_entities")), (button) -> button.setMessage(ldlConfig.getBlockEntitiesLightSource().get() ? YES : NO), (button) -> ldlConfig.getBlockEntitiesLightSource().set(!ldlConfig.getBlockEntitiesLightSource().get())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("entity.minecraft.creeper")), (button) -> button.setMessage(ldlConfig.getCreeperLightingMode().getTranslatedText()), (button) -> ldlConfig.setCreeperLightingMode(ldlConfig.getCreeperLightingMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("block.minecraft.tnt")), (button) -> button.setMessage(ldlConfig.getTntLightingMode().getTranslatedText()), (button) -> ldlConfig.setTntLightingMode(ldlConfig.getTntLightingMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("").append("DynLights: ").append(Text.translatable("lambdynlights.option.light_sources.water_sensitive_check")), (button) -> button.setMessage(ldlConfig.getWaterSensitiveCheck().get() ? YES : NO), (button) -> ldlConfig.getWaterSensitiveCheck().set(!ldlConfig.getWaterSensitiveCheck().get())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdynlights.option.mode"), (button) -> button.setMessage(ldlConfig.getDynamicLightsMode().getTranslatedText()), (button) -> ldlConfig.setDynamicLightsMode(ldlConfig.getDynamicLightsMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("").append("DynLights: ").append(new TranslatableText("lambdynlights.option.light_sources.entities")), (button) -> button.setMessage(ldlConfig.getEntitiesLightSource().get() ? YES : NO), (button) -> ldlConfig.getEntitiesLightSource().set(!ldlConfig.getEntitiesLightSource().get())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("").append("DynLights: ").append(new TranslatableText("lambdynlights.option.light_sources.block_entities")), (button) -> button.setMessage(ldlConfig.getBlockEntitiesLightSource().get() ? YES : NO), (button) -> ldlConfig.getBlockEntitiesLightSource().set(!ldlConfig.getBlockEntitiesLightSource().get())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("").append("DynLights: ").append(new TranslatableText("entity.minecraft.creeper")), (button) -> button.setMessage(ldlConfig.getCreeperLightingMode().getTranslatedText()), (button) -> ldlConfig.setCreeperLightingMode(ldlConfig.getCreeperLightingMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("").append("DynLights: ").append(new TranslatableText("block.minecraft.tnt")), (button) -> button.setMessage(ldlConfig.getTntLightingMode().getTranslatedText()), (button) -> ldlConfig.setTntLightingMode(ldlConfig.getTntLightingMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("").append("DynLights: ").append(new TranslatableText("lambdynlights.option.light_sources.water_sensitive_check")), (button) -> button.setMessage(ldlConfig.getWaterSensitiveCheck().get() ? YES : NO), (button) -> ldlConfig.getWaterSensitiveCheck().set(!ldlConfig.getWaterSensitiveCheck().get())));
|
|
|
|
|
}
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("citresewn") && !PuzzleConfig.disabledIntegrations.contains("citresewn") && CITResewnConfig.INSTANCE != null) {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("CIT Resewn")));
|
|
|
|
|
CITResewnConfig citConfig = CITResewnConfig.INSTANCE;
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.enabled.title"), (button) -> button.setMessage(citConfig.enabled ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.citresewn.enabled.title"), (button) -> button.setMessage(citConfig.enabled ? YES : NO), (button) -> {
|
|
|
|
|
citConfig.enabled = !citConfig.enabled;
|
|
|
|
|
citConfig.write();
|
|
|
|
|
MinecraftClient.getInstance().reloadResources();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.mute_errors.title"), (button) -> button.setMessage(citConfig.mute_errors ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.citresewn.mute_errors.title"), (button) -> button.setMessage(citConfig.mute_errors ? YES : NO), (button) -> {
|
|
|
|
|
citConfig.mute_errors = !citConfig.mute_errors;
|
|
|
|
|
citConfig.write();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.mute_warns.title"), (button) -> button.setMessage(citConfig.mute_warns ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.citresewn.mute_warns.title"), (button) -> button.setMessage(citConfig.mute_warns ? YES : NO), (button) -> {
|
|
|
|
|
citConfig.mute_warns = !citConfig.mute_warns;
|
|
|
|
|
citConfig.write();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.citresewn.broken_paths.title"), (button) -> button.setMessage(citConfig.broken_paths ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.citresewn.broken_paths.title"), (button) -> button.setMessage(citConfig.broken_paths ? YES : NO), (button) -> {
|
|
|
|
|
citConfig.broken_paths = !citConfig.broken_paths;
|
|
|
|
|
citConfig.write();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(0, 100,Text.translatable("config.citresewn.cache_ms.title"), () -> citConfig.cache_ms,
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(0, 100,new TranslatableText("config.citresewn.cache_ms.title"), () -> citConfig.cache_ms,
|
|
|
|
|
(button) -> button.setMessage(message(citConfig)),
|
|
|
|
|
(slider) -> {
|
|
|
|
|
try {
|
|
|
|
|
@@ -219,22 +220,22 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("lambdabettergrass") && !PuzzleConfig.disabledIntegrations.contains("lambdabettergrass")) {
|
|
|
|
|
LBGConfig lbgConfig = LambdaBetterGrass.get().config;
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.of("LambdaBetterGrass")));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("lambdabettergrass.option.mode"), (button) -> button.setMessage(lbgConfig.getMode().getTranslatedText()), (button) -> lbgConfig.setMode(lbgConfig.getMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(Text.translatable("lambdabettergrass.option.better_snow"), (button) -> button.setMessage(lbgConfig.hasBetterLayer() ? YES : NO), (button) -> lbgConfig.setBetterLayer(!lbgConfig.hasBetterLayer())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdabettergrass.option.mode"), (button) -> button.setMessage(lbgConfig.getMode().getTranslatedText()), (button) -> lbgConfig.setMode(lbgConfig.getMode().next())));
|
|
|
|
|
PuzzleApi.addToGraphicsOptions(new PuzzleWidget(new TranslatableText("lambdabettergrass.option.better_snow"), (button) -> button.setMessage(lbgConfig.hasBetterLayer() ? YES : NO), (button) -> lbgConfig.setBetterLayer(!lbgConfig.hasBetterLayer())));
|
|
|
|
|
}
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("cem") && FabricLoader.getInstance().isModLoaded("completeconfig") && !PuzzleConfig.disabledIntegrations.contains("cem")) {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.of("Custom Entity Models")));
|
|
|
|
|
CemConfig cemConfig = (CemConfig) CemConfigFairy.getConfig();
|
|
|
|
|
CemOptions cemOptions = CemConfigFairy.getConfig();
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.cem.use_optifine_folder"), (button) -> button.setMessage(cemConfig.useOptifineFolder() ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.cem.use_optifine_folder"), (button) -> button.setMessage(cemConfig.useOptifineFolder() ? YES : NO), (button) -> {
|
|
|
|
|
((CemConfigAccessor)cemOptions).setUseOptifineFolder(!cemConfig.useOptifineFolder());
|
|
|
|
|
cemConfig.save();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.cem.use_new_model_creation_fix"), (button) -> button.setMessage(cemConfig.useTransparentParts() ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.cem.use_new_model_creation_fix"), (button) -> button.setMessage(cemConfig.useTransparentParts() ? YES : NO), (button) -> {
|
|
|
|
|
((CemConfigAccessor)cemOptions).setUseModelCreationFix(!cemConfig.useTransparentParts());
|
|
|
|
|
cemConfig.save();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.cem.use_old_animations"), (button) -> button.setMessage(cemConfig.useOldAnimations() ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.cem.use_old_animations"), (button) -> button.setMessage(cemConfig.useOldAnimations() ? YES : NO), (button) -> {
|
|
|
|
|
((CemConfigAccessor)cemOptions).setUseOldAnimations(!cemConfig.useOldAnimations());
|
|
|
|
|
cemConfig.save();
|
|
|
|
|
}));
|
|
|
|
|
@@ -246,7 +247,7 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
if (s.equals("use_manual_culling")) return;
|
|
|
|
|
try {
|
|
|
|
|
Option.BooleanOption booleanOption = ((Option.BooleanOption)option);
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("options.continuity."+s), (button) -> button.setMessage(booleanOption.get() ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("options.continuity."+s), (button) -> button.setMessage(booleanOption.get() ? YES : NO), (button) -> {
|
|
|
|
|
booleanOption.set(!booleanOption.get());
|
|
|
|
|
contConfig.onChange();
|
|
|
|
|
contConfig.save();
|
|
|
|
|
@@ -255,13 +256,14 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
if (FabricLoader.getInstance().isModLoaded("entity_texture_features") && !PuzzleConfig.disabledIntegrations.contains("entity_texture_features")) {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.title")));
|
|
|
|
|
ETFConfig etfConfig = ETFApi.getETFConfigObject;
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.enable_custom_textures.title"), (button) -> button.setMessage(etfConfig.enableCustomTextures ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.etf.title")));
|
|
|
|
|
ETFConfig etfConfig = ETFClient.ETFConfigData;
|
|
|
|
|
ETFConfigScreen etfConfigScreen = new ETFConfigScreen();
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.etf.enable_custom_textures.title"), (button) -> button.setMessage(etfConfig.enableCustomTextures ? YES : NO), (button) -> {
|
|
|
|
|
etfConfig.enableCustomTextures = !etfConfig.enableCustomTextures;
|
|
|
|
|
ETFApi.saveETFConfigChangesAndResetETF();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.enable_emissive_textures.title"), (button) -> button.setMessage(etfConfig.enableEmissiveTextures ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.etf.enable_emissive_textures.title"), (button) -> button.setMessage(etfConfig.enableEmissiveTextures ? YES : NO), (button) -> {
|
|
|
|
|
etfConfig.enableEmissiveTextures = !etfConfig.enableEmissiveTextures;
|
|
|
|
|
ETFApi.saveETFConfigChangesAndResetETF();
|
|
|
|
|
}));
|
|
|
|
|
@@ -270,7 +272,7 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
etfConfig.fullBrightEmissives = !etfConfig.fullBrightEmissives ;
|
|
|
|
|
ETFApi.saveETFConfigChangesAndResetETF();
|
|
|
|
|
}));
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(Text.translatable("config.entity_texture_features.blinking_mob_settings.title"), (button) -> button.setMessage(etfConfig.enableBlinking ? YES : NO), (button) -> {
|
|
|
|
|
PuzzleApi.addToResourceOptions(new PuzzleWidget(new TranslatableText("config.etf.blinking_mob_settings.title"), (button) -> button.setMessage(etfConfig.enableBlinking ? YES : NO), (button) -> {
|
|
|
|
|
etfConfig.enableBlinking = !etfConfig.enableBlinking;
|
|
|
|
|
ETFApi.saveETFConfigChangesAndResetETF();
|
|
|
|
|
}));
|
|
|
|
|
@@ -284,7 +286,7 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
public static Text message(CITResewnConfig config) {
|
|
|
|
|
int ticks = config.cache_ms;
|
|
|
|
|
if (ticks <= 1) {
|
|
|
|
|
return (Text.translatable("config.citresewn.cache_ms.ticks." + ticks)).formatted(Formatting.AQUA);
|
|
|
|
|
return (new TranslatableText("config.citresewn.cache_ms.ticks." + ticks)).formatted(Formatting.AQUA);
|
|
|
|
|
} else {
|
|
|
|
|
Formatting color = Formatting.DARK_RED;
|
|
|
|
|
if (ticks <= 40) {
|
|
|
|
|
@@ -303,7 +305,7 @@ public class PuzzleClient implements ClientModInitializer {
|
|
|
|
|
color = Formatting.GREEN;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return (Text.translatable("config.citresewn.cache_ms.ticks.any", ticks)).formatted(color);
|
|
|
|
|
return (new TranslatableText("config.citresewn.cache_ms.ticks.any", ticks)).formatted(color);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|