37 lines
3.0 KiB
Lua
37 lines
3.0 KiB
Lua
-- LUALOCALS < ---------------------------------------------------------
|
|
local minetest, nodecore
|
|
= minetest, nodecore
|
|
-- LUALOCALS > ---------------------------------------------------------
|
|
local modname = minetest.get_current_modname()
|
|
------------------------------------------------------------------------
|
|
|
|
minetest.register_alias(modname.. ":pottery_claypot", modname.. ":pottery_clayware_pot")
|
|
minetest.register_alias(modname.. ":pottery_claypot_glazed", modname.. ":pottery_clayware_pot_glazed")
|
|
minetest.register_alias(modname.. ":pottery_waterpot", modname.. ":pottery_clayware_pot_water")
|
|
minetest.register_alias(modname.. ":pottery_waterpot_glazed", modname.. ":pottery_clayware_pot_water")
|
|
minetest.register_alias(modname.. ":pottery_waterpot_clayware", modname.. ":pottery_clayware_pot_water")
|
|
minetest.register_alias(modname.. ":pottery_flowerpot_clayware", modname.. ":pottery_clayware_flowerpot")
|
|
minetest.register_alias(modname.. ":pottery_flowerpot_glazed_clayware", modname.. ":pottery_clayware_flowerpot_glazed")
|
|
minetest.register_alias(modname.. ":pottery_funguspot_clayware", modname.. ":pottery_clayware_funguspot")
|
|
minetest.register_alias(modname.. ":pottery_funguspot_glazed_clayware", modname.. ":pottery_clayware_funguspot_glazed")
|
|
|
|
minetest.register_alias(modname.. ":pottery_adobe_pot", modname.. ":pottery_earthenware_pot")
|
|
minetest.register_alias(modname.. ":pottery_adobe_pot_glazed", modname.. ":pottery_earthenware_pot_glazed")
|
|
minetest.register_alias(modname.. ":pottery_waterpot_earthenware", modname.. ":pottery_earthenware_pot_water")
|
|
minetest.register_alias(modname.. ":pottery_flowerpot_earthenware", modname.. ":pottery_earthenware_flowerpot")
|
|
minetest.register_alias(modname.. ":pottery_adobe_flowerpot", modname.. ":pottery_earthenware_flowerpot")
|
|
minetest.register_alias(modname.. ":pottery_adobe_flowerpot_glazed", modname.. ":pottery_earthenware_flowerpot_glazed")
|
|
minetest.register_alias(modname.. ":pottery_flowerpot_glazed_earthenware", modname.. ":pottery_earthenware_flowerpot_glazed")
|
|
minetest.register_alias(modname.. ":pottery_funguspot_earthenware", modname.. ":pottery_earthenware_funguspot")
|
|
minetest.register_alias(modname.. ":pottery_funguspot_glazed_earthenware", modname.. ":pottery_earthenware_funguspot_glazed")
|
|
|
|
minetest.register_alias(modname.. ":pottery_hardpot", modname.. ":pottery_stoneware_pot")
|
|
minetest.register_alias(modname.. ":pottery_hardpot_glazed", modname.. ":pottery_stoneware_pot_glazed")
|
|
minetest.register_alias(modname.. ":pottery_waterpot_stoneware", modname.. ":pottery_stoneware_pot_water")
|
|
minetest.register_alias(modname.. ":pottery_flowerpot_stoneware", modname.. ":pottery_stoneware_flowerpot")
|
|
minetest.register_alias(modname.. ":pottery_flowerpot_glazed_stoneware", modname.. ":pottery_stoneware_flowerpot_glazed")
|
|
minetest.register_alias(modname.. ":pottery_funguspot_stoneware", modname.. ":pottery_stoneware_funguspot")
|
|
minetest.register_alias(modname.. ":pottery_funguspot_glazed_stoneware", modname.. ":pottery_stoneware_funguspot_glazed")
|
|
|
|
|