remove items and npcs

This commit is contained in:
2026-02-17 16:51:30 +01:00
parent 971acb02ca
commit 9a65891afa
10 changed files with 44 additions and 398 deletions

View File

@@ -1,5 +1,13 @@
Util = {}
function Util.create_decision(id, label, handler)
return {
id = id,
label = label,
handler = handler
}
end
function Util.safeindex(array, index)
return ((index - 1 + #array) % #array) + 1
end