diff options
-rw-r--r-- | src/main/java/at/hannibal2/skyhanni/features/fishing/SeaCreatureManager.kt | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main/java/at/hannibal2/skyhanni/features/fishing/SeaCreatureManager.kt b/src/main/java/at/hannibal2/skyhanni/features/fishing/SeaCreatureManager.kt index 1fcca06f2..9e54fef06 100644 --- a/src/main/java/at/hannibal2/skyhanni/features/fishing/SeaCreatureManager.kt +++ b/src/main/java/at/hannibal2/skyhanni/features/fishing/SeaCreatureManager.kt @@ -32,6 +32,7 @@ class SeaCreatureManager { @SubscribeEvent fun onRepoReload(event: RepositoryReloadEvent) { seaCreatureMap.clear() + allFishingMobs.clear() var counter = 0 try { @@ -52,6 +53,7 @@ class SeaCreatureManager { counter++ } } + SeaCreatureManager.allFishingMobs = allFishingMobs LorenzUtils.debug("Loaded $counter sea creatures from repo") } catch (e: Exception) { |