diff --git a/FarmlandDropsWithNutrients/FDWNCore.cs b/FarmlandDropsWithNutrients/FDWNCore.cs index 03e00e5..fbfcd0e 100644 --- a/FarmlandDropsWithNutrients/FDWNCore.cs +++ b/FarmlandDropsWithNutrients/FDWNCore.cs @@ -38,14 +38,14 @@ public override void AssetsFinalize(ICoreAPI api) foreach (var collectible in api.World.Collectibles.Where(c => c?.Code != null)) { if (!collectible.IsAcceptableFarmland()) continue; - Logger.Warning($"Adding behavior to {collectible.Code}"); + Logger.Event($"Adding behavior to {collectible.Code}"); collectible.AddBehavior(); } foreach (var block in api.World.Blocks.Where(b => b?.Code != null)) { if (!block.IsAcceptableFarmland()) continue; - Logger.Warning($"Adding behavior to {block.Code}"); + Logger.Event($"Adding behavior to {block.Code}"); block.AddBehavior(); } } @@ -76,4 +76,4 @@ public static bool TryMergeStacksPrefix(CollectibleObject __instance, ItemStackM public override void Dispose() { HarmonyInstance?.UnpatchAll(Mod.Info.ModID); } -} \ No newline at end of file +}