Skip to content

Commit

Permalink
release v4.3.1084
Browse files Browse the repository at this point in the history
  • Loading branch information
FluffierThanThou committed Aug 6, 2021
1 parent 74a315c commit 714dd36
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 5 deletions.
Binary file modified Assemblies/0ColourPicker.dll
Binary file not shown.
Binary file modified Assemblies/FluffyUI.dll
Binary file not shown.
Binary file modified Assemblies/ModManager.dll
Binary file not shown.
7 changes: 3 additions & 4 deletions Source/ModManager/Patches/Patch_ModMetaData_PackageId.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,10 @@ namespace ModManager {
public class Patch_ModMetaData_SamePackageId {
public static bool Prefix(ModMetaData __instance, ref bool __result, string ___packageIdLowerCase,
bool ignorePostfix, string otherPackageId) {
__result = ___packageIdLowerCase == null
? false
: ignorePostfix
__result = ___packageIdLowerCase != null
&& (ignorePostfix
? ___packageIdLowerCase.StripPostfixes().Equals(otherPackageId, StringComparison.CurrentCultureIgnoreCase)
: __instance.PackageId.Equals(otherPackageId, StringComparison.CurrentCultureIgnoreCase);
: __instance.PackageId.Equals(otherPackageId, StringComparison.CurrentCultureIgnoreCase));
return false;
}
}
Expand Down
2 changes: 1 addition & 1 deletion modinfo.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"url": "https://github.com/fluffy-mods/ModManager",
"version": {
"major": 4,
"minor": 2,
"minor": 3,
"build": 1084
},
"author": {
Expand Down

0 comments on commit 714dd36

Please sign in to comment.