diff --git a/1.5/Assemblies/CustomPrisonerInteractions.dll b/1.5/Assemblies/CustomPrisonerInteractions.dll index 0e2f50b..f9be80b 100644 Binary files a/1.5/Assemblies/CustomPrisonerInteractions.dll and b/1.5/Assemblies/CustomPrisonerInteractions.dll differ diff --git a/About/About.xml b/About/About.xml index 46c0250..39582cb 100644 --- a/About/About.xml +++ b/About/About.xml @@ -108,5 +108,5 @@ Since modding is just a hobby for me I expect no donations to keep modding. If y [/list] [url=https://steamcommunity.com/sharedfiles/filedetails/changelog/2841231775][img]https://img.shields.io/github/v/release/emipa606/CustomPrisonerInteractions?label=latest%20version&style=plastic&labelColor=0070cd&color=white[/img][/url] | tags: prison management, new options, customization - 1.5.7 + 1.5.8 \ No newline at end of file diff --git a/About/Changelog.txt b/About/Changelog.txt index 88b815b..32b7807 100644 --- a/About/Changelog.txt +++ b/About/Changelog.txt @@ -1,5 +1,8 @@ # Changelog for CustomPrisonerInteractions +1.5.8 - Extra release-action can now be set to None when the default action has a value set + + 1.5.7 - Removes dead and destroyed pawns from the Pawn-list on save, to avoid null-errors on load diff --git a/About/Manifest.xml b/About/Manifest.xml index 482f274..a859b99 100644 --- a/About/Manifest.xml +++ b/About/Manifest.xml @@ -1,7 +1,7 @@ CustomPrisonerInteractions - 1.5.7 + 1.5.8 diff --git a/About/ModSync.xml b/About/ModSync.xml index d438905..ba4e1a0 100644 --- a/About/ModSync.xml +++ b/About/ModSync.xml @@ -2,7 +2,7 @@ 74b7df5b-73c0-4825-884b-61df997d22b7 Custom Prisoner Interactions - 1.5.7 + 1.5.8 False emipa606 diff --git a/Source/CustomPrisonerInteractions/CustomPrisonerInteractions.csproj b/Source/CustomPrisonerInteractions/CustomPrisonerInteractions.csproj index 70500b6..f938886 100644 --- a/Source/CustomPrisonerInteractions/CustomPrisonerInteractions.csproj +++ b/Source/CustomPrisonerInteractions/CustomPrisonerInteractions.csproj @@ -6,7 +6,7 @@ false None latest - 1.5.7 + 1.5.8 diff --git a/Source/CustomPrisonerInteractions/ITab_Pawn_Visitor_FillTab.cs b/Source/CustomPrisonerInteractions/ITab_Pawn_Visitor_FillTab.cs index 1525244..71d3a37 100644 --- a/Source/CustomPrisonerInteractions/ITab_Pawn_Visitor_FillTab.cs +++ b/Source/CustomPrisonerInteractions/ITab_Pawn_Visitor_FillTab.cs @@ -45,6 +45,7 @@ public static void Prefix(out Tuple, string> __state) { case "Release": if (currentExtraInterraction is not (ReleaseWhenHealthy or ReleaseWhenAbleToWalk or ReleaseWhenNotGuilty + or None )) { extraInteractionsTracker[pawn] = Undefined; diff --git a/Source/settings.png b/Source/settings.png index 898d6e2..37607e0 100644 Binary files a/Source/settings.png and b/Source/settings.png differ