Charakterbewegungen hinzugefügt, Deko hinzugefügt, Kochrezepte angepasst

This commit is contained in:
N-Nachtigal 2025-05-14 16:36:42 +02:00
parent 95945c0306
commit a0c893ca0b
1124 changed files with 64294 additions and 763 deletions

7
mods/futil/util/path.lua Normal file
View file

@ -0,0 +1,7 @@
function futil.path_concat(...)
return table.concat({ ... }, DIR_DELIM)
end
function futil.path_split(path)
return string.split(path, DIR_DELIM, true)
end