small filter addition

This commit is contained in:
Manuel Simon Hirsig
2016-07-29 16:57:44 +02:00
parent 2becd734c3
commit 6f406bf18f
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -39,7 +39,7 @@ do
end
function public.on_load()
public.version = '3.5.0'
public.version = '3.5.1'
public.blizzard_ui_shown = false
public.bids_loaded = false
public.current_owner_page = nil
+3 -1
View File
@@ -475,7 +475,7 @@ function public.query(filter_term)
local str = parts[i]
i = i + 1
if str == 'or*' then
if str == 'and*' or str == 'or*' then
if polish_notation_counter > 1 then
break
end
@@ -728,6 +728,8 @@ function public.validator(blizzard_filter, post_filter)
tinsert(stack, a or b)
elseif op == 'not' then
tinsert(stack, not tremove(stack))
elseif op == 'and*' then
stack = {Aux.util.all(stack, Aux.util.id)}
elseif op == 'or*' then
stack = {Aux.util.any(stack, Aux.util.id)}
else