1
0
mirror of https://github.com/adrido/darkage.git synced 2025-06-30 15:30:46 +02:00

Added colored glass ( If unifieddyes installed)

If you have unified dyes installed and have a recent version of Minetest the glasses can colored by punching with dye.
This commit is contained in:
adrido
2017-02-22 09:04:52 +01:00
parent cd4a46d666
commit 9750ee5f29
9 changed files with 207 additions and 64 deletions

View File

@ -6,17 +6,18 @@ darkage.formbg = (default.gui_bg or "")..
(default.gui_bg_img or "")..
(default.gui_slots or "")
local MODPATH = minetest.get_modpath("darkage")
local MODPATH = minetest.get_modpath("darkage")..DIR_DELIM
dofile(MODPATH.."/nodes.lua")
dofile(MODPATH.."/mapgen.lua")
dofile(MODPATH.."/building.lua")
dofile(MODPATH.."/furniture.lua")
dofile(MODPATH.."/aliases.lua")
dofile(MODPATH.."/walls.lua")
dofile(MODPATH.."nodes.lua")
dofile(MODPATH.."glass.lua")
dofile(MODPATH.."mapgen.lua")
dofile(MODPATH.."building.lua")
dofile(MODPATH.."furniture.lua")
dofile(MODPATH.."aliases.lua")
dofile(MODPATH.."walls.lua")
dofile(MODPATH.."/stairs_functions.lua")
dofile(MODPATH.."/stairs.lua")
dofile(MODPATH.."stairs_functions.lua")
dofile(MODPATH.."stairs.lua")
---------------