0.1.1.5, Invert order of applying fixed designs so more specific are used after less specific.

This commit is contained in:
Ottermandias 2023-01-23 16:27:57 +01:00
parent 415e58b93e
commit 9dfa948c81
5 changed files with 6 additions and 6 deletions

Binary file not shown.

View file

@ -127,7 +127,7 @@ namespace Glamourer.Designs
if (!EnabledDesigns.TryGetValue(name, out var designs))
return;
var applicableDesigns = designs.OrderBy(d => d.Jobs.Count).Where(d => d.Jobs.Fits(character.ClassJob.Id));
var applicableDesigns = designs.OrderByDescending(d => d.Jobs.Count).Where(d => d.Jobs.Fits(character.ClassJob.Id));
var designApplied = false;
foreach (var design in applicableDesigns) {

View file

@ -5,8 +5,8 @@
<PlatformTarget>x64</PlatformTarget>
<RootNamespace>Glamourer</RootNamespace>
<AssemblyName>Glamourer</AssemblyName>
<FileVersion>0.1.1.4</FileVersion>
<AssemblyVersion>0.1.1.4</AssemblyVersion>
<FileVersion>0.1.1.5</FileVersion>
<AssemblyVersion>0.1.1.5</AssemblyVersion>
<Company>SoftOtter</Company>
<Product>Glamourer</Product>
<Copyright>Copyright © 2020</Copyright>

View file

@ -5,7 +5,7 @@
"Description": "Adds functionality to change and store appearance of players, customization and equip. Requires Penumbra to be installed and activated to work. Can also add preview options to the Changed Items tab for Penumbra.",
"Tags": [ "Appearance", "Glamour", "Race", "Outfit", "Armor", "Clothes", "Skins", "Customization", "Design", "Character" ],
"InternalName": "Glamourer",
"AssemblyVersion": "0.1.1.4",
"AssemblyVersion": "0.1.1.5",
"RepoUrl": "https://github.com/Ottermandias/Glamourer",
"ApplicableVersion": "any",
"DalamudApiLevel": 8,

View file

@ -6,8 +6,8 @@
"Description": "Adds functionality to change and store appearance of players, customization and equip. Requires Penumbra to be installed and activated to work. Can also add preview options to the Changed Items tab for Penumbra.",
"Tags": [ "Appearance", "Glamour", "Race", "Outfit", "Armor", "Clothes", "Skins", "Customization", "Design", "Character" ],
"InternalName": "Glamourer",
"AssemblyVersion": "0.1.1.4",
"TestingAssemblyVersion": "0.1.1.4",
"AssemblyVersion": "0.1.1.5",
"TestingAssemblyVersion": "0.1.1.5",
"RepoUrl": "https://github.com/Ottermandias/Glamourer",
"ApplicableVersion": "any",
"DalamudApiLevel": 8,