From 16a56eb5d0b4bc5f6388e1a4cce8130fcd2e26cc Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Mon, 21 Nov 2022 15:33:51 +0100 Subject: [PATCH] Turn mods without names to warnings. --- Penumbra/Mods/Mod.BasePath.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Penumbra/Mods/Mod.BasePath.cs b/Penumbra/Mods/Mod.BasePath.cs index 42ebb23e..9ce8d478 100644 --- a/Penumbra/Mods/Mod.BasePath.cs +++ b/Penumbra/Mods/Mod.BasePath.cs @@ -40,7 +40,7 @@ public partial class Mod if( !mod.Reload( incorporateMetaChanges, out _ ) ) { // Can not be base path not existing because that is checked before. - Penumbra.Log.Error( $"Mod at {modPath} without name is not supported." ); + Penumbra.Log.Warning( $"Mod at {modPath} without name is not supported." ); return null; }