Skip to content

Commit

Permalink
Update the event filter max value
Browse files Browse the repository at this point in the history
Resolves #128
  • Loading branch information
nebularg committed Oct 2, 2024
1 parent 75de413 commit a421dcb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Code/CombatEvents.lua
Original file line number Diff line number Diff line change
Expand Up @@ -1233,9 +1233,9 @@ function module:OnOptionsCreate()
name = localName,
desc = L["What amount to filter out. Any amount below this will be filtered.\nNote: a value of 0 will mean no filtering takes place."],
min = 0,
max = 100000,
max = 10000000,
step = 1,
bigStep = 20,
bigStep = 1000,
get = getAmount,
set = setAmount,
arg = filterType
Expand Down

0 comments on commit a421dcb

Please sign in to comment.