Limit filters with '=' aren't working
zealvurte opened this issue ยท 2 comments
If you use Limit
with a filter that has an =
prefix, it will result in no mounts, as the prefix is not being removed when searching for matches.
MountList.lua:225:
mounts = self:FilterSearch(f)
should be mounts = self:FilterSearch(f:sub(2))