mirror of
https://github.com/Ottermandias/Glamourer.git
synced 2025-12-12 18:27:24 +01:00
Fix designs not resetting temporary settings if they do not have mod associations.
This commit is contained in:
parent
c541fd62c4
commit
7d490f9cfb
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ public class ModSettingApplier(PenumbraService penumbra, Configuration config, O
|
|||
|
||||
public void HandleStateApplication(ActorState state, MergedDesign design)
|
||||
{
|
||||
if (!config.AlwaysApplyAssociatedMods || design.AssociatedMods.Count == 0)
|
||||
if (!config.AlwaysApplyAssociatedMods || (design.AssociatedMods.Count == 0 && !design.ResetTemporarySettings))
|
||||
return;
|
||||
|
||||
objects.Update();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue