aboutsummaryrefslogtreecommitdiff
path: root/lua/pets/utils.lua
diff options
context:
space:
mode:
authorGiuseppe Gadola <67549788+giusgad@users.noreply.github.com>2023-02-16 16:56:38 +0100
committerGitHub <noreply@github.com>2023-02-16 16:56:38 +0100
commit14957d3912d9adba6fca8fd8354ecc2f9ee94cf9 (patch)
treec76fdbbe6e52abea63cf3d0c18ef9a53100488e7 /lua/pets/utils.lua
parentdocs(help): auto generate docs (diff)
parentdocs(readme): added PetsSleepToggle command (diff)
chore: merge pull request #7 from Kyle-Mendes/sleeping
Adding the ability to sleep pets, stopping their movement but keeping the animation going
Diffstat (limited to 'lua/pets/utils.lua')
-rw-r--r--lua/pets/utils.lua9
1 files changed, 9 insertions, 0 deletions
diff --git a/lua/pets/utils.lua b/lua/pets/utils.lua
index dbf1191..366de2a 100644
--- a/lua/pets/utils.lua
+++ b/lua/pets/utils.lua
@@ -88,4 +88,13 @@ function M.parse_popup_hl(highlight)
)
end
+function M.table_includes(table, key)
+ for _, value in ipairs(table) do
+ if value == key then
+ return true
+ end
+ end
+ return false
+end
+
return M