From 942dd629efbf12183b1c5f5a966c36d4b0647a6b Mon Sep 17 00:00:00 2001 From: nea Date: Sun, 7 May 2023 12:22:36 +0200 Subject: Add fishing particle highlighter Currently does not work when sneaking or when the bobber moves too much, since the position desyncs with the server --- src/main/kotlin/moe/nea/notenoughupdates/features/FeatureManager.kt | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/main/kotlin/moe/nea/notenoughupdates/features/FeatureManager.kt') diff --git a/src/main/kotlin/moe/nea/notenoughupdates/features/FeatureManager.kt b/src/main/kotlin/moe/nea/notenoughupdates/features/FeatureManager.kt index bc9a916..2512992 100644 --- a/src/main/kotlin/moe/nea/notenoughupdates/features/FeatureManager.kt +++ b/src/main/kotlin/moe/nea/notenoughupdates/features/FeatureManager.kt @@ -3,6 +3,7 @@ package moe.nea.notenoughupdates.features import kotlinx.serialization.Serializable import kotlinx.serialization.serializer import moe.nea.notenoughupdates.NotEnoughUpdates +import moe.nea.notenoughupdates.features.fishing.FishingWarning import moe.nea.notenoughupdates.features.world.FairySouls import moe.nea.notenoughupdates.util.data.DataHolder @@ -24,6 +25,7 @@ object FeatureManager : DataHolder(serializer(), "feature synchronized(this) { if (hasAutoloaded) return loadFeature(FairySouls) + loadFeature(FishingWarning) hasAutoloaded = true } } -- cgit