Skip to content

Commit

Permalink
Fixing error with claimed condition
Browse files Browse the repository at this point in the history
  • Loading branch information
cyrite committed Jan 1, 2025
1 parent ff412ef commit dc6323d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Trust.lua
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
_addon.author = 'Cyrite'
_addon.commands = {'Trust','trust'}
_addon.name = 'Trust'
_addon.version = '13.0.4'
_addon.version = '13.0.5'
_addon.release_notes = [[
This update introduces new menus for Bard, autocomplete for Trust
commands, new commands and important bug fixes for users running the
Expand Down
2 changes: 1 addition & 1 deletion cylibs/battle/monsters/mob_filter.lua
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ function MobFilter:get_nearby_mobs(filter_types)
ValidTargetCondition.new(alter_ego_util.untargetable_alter_egos()),
MinHitPointsPercentCondition.new(1),
MaxDistanceCondition.new(50),
ConditionalCondition.new(L{ ClaimedCondition.new(L{ self.alliance:get_alliance_member_ids() }), UnclaimedCondition.new() }, Condition.LogicalOperator.Or)
ConditionalCondition.new(L{ ClaimedCondition.new(self.alliance:get_alliance_member_ids()), UnclaimedCondition.new() }, Condition.LogicalOperator.Or)
}

mobs = mobs:filter(function(mob)
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "13.0.4",
"version": "13.0.5",
"download_url": "https://github.com/cyritegamestudios/trust/releases/download/v13.0.4/trust.zip"
}

0 comments on commit dc6323d

Please sign in to comment.