Fixed random list, Fixed MEssage for all

This commit is contained in:
Jeremy Smitherman
2018-12-24 17:11:04 -06:00
parent c24de38b21
commit 0775914a1c
3 changed files with 9 additions and 5 deletions

View File

@@ -1,3 +1,8 @@
HOGGIT.randomInList = function(list)
local idx = math.random(1, #list)
return list[idx]
end
HOGGIT.filterTable = function(t, filter)
local out = {}
for k,v in pairs(t) do