Skip to content

Commit

Permalink
Fix incorrect return
Browse files Browse the repository at this point in the history
  • Loading branch information
p3lim committed Jan 2, 2023
1 parent 59a6ba6 commit e9bb461
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LibProcessable.lua
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ function lib:IsMillable(itemID, ignoreMortar)
end
elseif not ignoreMortar and GetItemCount(114942) > 0 then
-- Draenic Mortar can mill Draenor herbs without a profession
return itemID >= 109124 and itemID <= 109130, true
return itemID >= 109124 and itemID <= 109130, nil, true
end
end

Expand Down

0 comments on commit e9bb461

Please sign in to comment.