add fallback for hasItem if no inventory is found

This commit is contained in:
Jim Shield
2025-05-14 23:38:34 +01:00
parent 3bd9935346
commit 65137207ae

View File

@@ -67,6 +67,9 @@ function hasItem(items, amount, src)
end
return true, hasTable
end
-- if can't find inventory, return false
print("^1Error^7: ^1Can't find players inventory for some reason")
return false, {}
end
--- Retrieves a player's inventory based on the active inventory system.