From 5cdb13328ce58e8ae319962a5b444be6ece6911d Mon Sep 17 00:00:00 2001 From: Ottermandias Date: Mon, 26 Sep 2022 14:41:09 +0200 Subject: [PATCH] And another one. --- Penumbra/Meta/Manager/MetaManager.cs | 3 +-- Penumbra/UI/ConfigWindow.Changelog.cs | 8 ++++---- 2 files changed, 5 insertions(+), 6 deletions(-) diff --git a/Penumbra/Meta/Manager/MetaManager.cs b/Penumbra/Meta/Manager/MetaManager.cs index 7fe1aaa1..0469dc09 100644 --- a/Penumbra/Meta/Manager/MetaManager.cs +++ b/Penumbra/Meta/Manager/MetaManager.cs @@ -137,7 +137,7 @@ public partial class MetaManager : IDisposable, IEnumerable< KeyValuePair< MetaM } var loaded = 0; - foreach( var manip in Manipulations.Where( m => m.ManipulationType != MetaManipulation.Type.Imc ) ) + foreach( var manip in Manipulations ) { loaded += manip.ManipulationType switch { @@ -154,7 +154,6 @@ public partial class MetaManager : IDisposable, IEnumerable< KeyValuePair< MetaM : 0; } - SetImcFiles(); if( Penumbra.CollectionManager.Default == _collection ) { SetFiles(); diff --git a/Penumbra/UI/ConfigWindow.Changelog.cs b/Penumbra/UI/ConfigWindow.Changelog.cs index e126b85d..cf158935 100644 --- a/Penumbra/UI/ConfigWindow.Changelog.cs +++ b/Penumbra/UI/ConfigWindow.Changelog.cs @@ -19,14 +19,14 @@ public partial class ConfigWindow Add5_7_0( ret ); Add5_7_1( ret ); Add5_8_0( ret ); - Add5_8_5( ret ); + Add5_8_6( ret ); return ret; } - private static void Add5_8_5( Changelog log ) - => log.NextVersion( "Version 0.5.8.5" ) - .RegisterEntry( "Fixed some problems with metadata reloading and reverting and IMC files. (5.8.1 to 5.8.5)." ) + private static void Add5_8_6( Changelog log ) + => log.NextVersion( "Version 0.5.8.6" ) + .RegisterEntry( "Fixed some problems with metadata reloading and reverting and IMC files. (5.8.1 to 5.8.6)." ) .RegisterHighlight( "If you encounter any issues, please try completely restarting your game after updating (not just relogging), before reporting them.", 1 );