From 2644d59170d6e10bc10be8ec4844ab123112f2d1 Mon Sep 17 00:00:00 2001 From: MicrocontrollersDev Date: Fri, 26 Apr 2024 16:08:23 -0500 Subject: [PATCH] update fast/2d items description --- .../legacyanimations/config/LegacyAnimationsSettings.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/mixces/legacyanimations/config/LegacyAnimationsSettings.java b/src/main/java/com/mixces/legacyanimations/config/LegacyAnimationsSettings.java index 5a77c0a..182eeca 100644 --- a/src/main/java/com/mixces/legacyanimations/config/LegacyAnimationsSettings.java +++ b/src/main/java/com/mixces/legacyanimations/config/LegacyAnimationsSettings.java @@ -165,7 +165,7 @@ public static Screen configScreen(Screen parent) { .build()) .option(Option.createBuilder(boolean.class) .name(Text.literal("Fast/2D Items")) - .description(OptionDescription.of(Text.of("Reverts the projectile's positions back to the older style."))) + .description(OptionDescription.of(Text.of("Changes dropped items to always face towards the player."))) .binding(defaults.fastItems, () -> config.fastItems, newVal -> config.fastItems = newVal) .controller(TickBoxControllerBuilder::create) .build())