mirror of
https://github.com/mt-mods/homedecor_modpack.git
synced 2025-07-22 23:30:21 +02:00
make homedecor game agnostic (#28)
* make materials.lua with hades, minetest game, farlands items * make textures file for central handling * make mods game agnostic * take out the trash * handle multiple seats in sofas * add github luacheck workflow and various luacheck fixes * add fluxionary scope creep * fix devtest breaking right to a name policy Co-authored-by: wsor4035 <24964441+wsor4035@users.noreply.github.com> Co-authored-by: SFENCE <sfence.software@gmail.com>
This commit is contained in:
@ -1,5 +1,13 @@
|
||||
if not minetest.get_modpath("player_api") then
|
||||
minetest.log(
|
||||
"action",
|
||||
"[homedecor_wardrobe]: minetest game not detected, disabling as this mod is minetest game only at this time"
|
||||
)
|
||||
return
|
||||
end
|
||||
|
||||
local S = minetest.get_translator("homedecor_wardrobe")
|
||||
modpath = minetest.get_modpath("homedecor_wardrobe")
|
||||
local modpath = minetest.get_modpath("homedecor_wardrobe")
|
||||
|
||||
local wd_cbox = {type = "fixed", fixed = {-0.5, -0.5, -0.5, 0.5, 1.5, 0.5}}
|
||||
|
||||
|
Reference in New Issue
Block a user