Skip to content

Commit

Permalink
Merge pull request #4226 from SolastaMods/dev
Browse files Browse the repository at this point in the history
1.5.94.36
  • Loading branch information
ThyWoof authored Dec 8, 2023
2 parents 348b67b + 29f8653 commit 792bb9f
Show file tree
Hide file tree
Showing 12 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion SolastaUnfinishedBusiness/ChangelogHistory.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
1.5.94.35:
1.5.94.36:

- fixed a null exception on gadgets saving throws

1.5.94.35:

- SPECIAL THANKS to SpaceHamster, ImpPhil, ChrisJohnDigital, TPABOBAP, and HiddenHax as without them UB wouldn't exist

Expand Down
2 changes: 1 addition & 1 deletion SolastaUnfinishedBusiness/Info.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"Id": "SolastaUnfinishedBusiness",
"DisplayName": "Unfinished Business [UB1]",
"Version": "1.5.94.35",
"Version": "1.5.94.36",
"GameVersion": "1.5.94",
"ManagerVersion": "0.24.0",
"AssemblyName": "SolastaUnfinishedBusiness.dll",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -751,14 +751,14 @@ internal static void OnRollSavingThrowOath(
string selfConditionName,
ConditionDefinition conditionDefinitionEnemy)
{
if (sourceDefinition is not SpellDefinition { castingTime: ActivationTime.Action } &&
sourceDefinition is not FeatureDefinitionPower { RechargeRate: RechargeRate.ChannelDivinity } &&
!caster.AllConditions.Any(x => x.Name.Contains("Smite")))
if (caster == null || !caster.HasAnyConditionOfType(selfConditionName) || caster.Side == target.Side)
{
return;
}

if (caster == null || !caster.HasAnyConditionOfType(selfConditionName) || caster.Side == target.Side)
if (sourceDefinition is not SpellDefinition { castingTime: ActivationTime.Action } &&
sourceDefinition is not FeatureDefinitionPower { RechargeRate: RechargeRate.ChannelDivinity } &&
!caster.AllConditions.Any(x => x.Name.Contains("Smite")))
{
return;
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added SolastaUnfinishedBusiness/Portraits/DrowMale1.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion SolastaUnfinishedBusiness/SolastaUnfinishedBusiness.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<LangVersion>10</LangVersion>
<TargetFramework>net472</TargetFramework>
<AssemblyVersion>1.5.94.35</AssemblyVersion>
<AssemblyVersion>1.5.94.36</AssemblyVersion>
<RepositoryUrl>https://github.com/SolastaMods/SolastaUnfinishedBusiness</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<Configurations>Debug Install;Release Install</Configurations>
Expand Down

0 comments on commit 792bb9f

Please sign in to comment.