Skip to content

Commit

Permalink
Corrected Kitsune polymorph check
Browse files Browse the repository at this point in the history
  • Loading branch information
DarthParametric committed Dec 14, 2024
1 parent 71677f2 commit 2249899
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion AutoMount/AutoMount.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<ImplicitUsings>enable</ImplicitUsings>
<AssemblyName>AutoMount</AssemblyName>
<Description>AutoMount for TabletopTweaks</Description>
<Version>1.2.2</Version>
<Version>1.2.3</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<LangVersion>latest</LangVersion>
<RootNamespace>AutoMount</RootNamespace>
Expand Down
2 changes: 1 addition & 1 deletion AutoMount/Info.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"Id": "AutoMount",
"DisplayName": "Auto Mount for TabletopTweaks",
"Author": "Zepheon, DarthParametric",
"Version": "1.2.2",
"Version": "1.2.3",
"GameVersion": "2.5.0",
"ManagerVersion": "0.31.0",
"Requirements": [ "ModMenu-1.3.2" ],
Expand Down
2 changes: 1 addition & 1 deletion AutoMount/Main.cs
Original file line number Diff line number Diff line change
Expand Up @@ -402,7 +402,7 @@ public static bool CheckCanMount(UnitEntityData Master, UnitEntityData AnimalCom
bool bPopUp = Settings.IsCombatLogDebugEnabled();

// Account for Nenio and other Kitsune counting as polymorphed when in Human form.
if (Master.HasFact(KitsuneRace))
if (Master.HasFact(KitsuneRace) && bMasterPoly)
{
// Check that they are polymorphed into a Human.
var PolyType = Master.GetActivePolymorph().Component.Race;
Expand Down
4 changes: 2 additions & 2 deletions AutoMount/Repository.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
"Releases": [
{
"Id": "AutoMount",
"Version": "1.2.2",
"DownloadUrl": "https://github.com/DarthParametric/AutoMount_for_TabletopTweaks/releases/download/1.2.2/AutoMount_for_TabletopTweaks_v1.2.2.zip"
"Version": "1.2.3",
"DownloadUrl": "https://github.com/DarthParametric/AutoMount_for_TabletopTweaks/releases/download/1.2.3/AutoMount_for_TabletopTweaks_v1.2.3.zip"
}
]
}

0 comments on commit 2249899

Please sign in to comment.