mirror of
https://git.0x7be.net/dirk/uniham.git
synced 2024-11-22 07:13:49 +01:00
put replacements where they belong
This commit is contained in:
parent
c641e0e917
commit
dbdf094855
16
init.lua
16
init.lua
@ -4,22 +4,6 @@ uniham.modpath = minetest.get_modpath(minetest.get_current_modname())
|
|||||||
uniham.syspath = uniham.modpath..DIR_DELIM..'system'
|
uniham.syspath = uniham.modpath..DIR_DELIM..'system'
|
||||||
|
|
||||||
|
|
||||||
-- Register replacements for the hammer. Entry ID is the ID of the node to
|
|
||||||
-- replace and entry value is the ID of the node to replace with.
|
|
||||||
uniham.replacements = {
|
|
||||||
-- sefault stone crushing
|
|
||||||
['default:obsidian'] = 'default:stone',
|
|
||||||
['default:stone'] = 'default:cobble',
|
|
||||||
['default:cobble'] = 'default:gravel',
|
|
||||||
['default:gravel'] = 'default:sand',
|
|
||||||
-- sandstone types to sand
|
|
||||||
['default:sandstone'] = 'default:sand',
|
|
||||||
['default:desert_sandstone'] = 'default:desert_cobble',
|
|
||||||
['default:desert_cobble'] = 'default:desert_sand',
|
|
||||||
['default:silver_sandstone'] = 'default:silver_sand',
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
-- Load mod
|
-- Load mod
|
||||||
dofile(uniham.syspath..DIR_DELIM..'use_hammer.lua')
|
dofile(uniham.syspath..DIR_DELIM..'use_hammer.lua')
|
||||||
dofile(uniham.syspath..DIR_DELIM..'register_hammer.lua')
|
dofile(uniham.syspath..DIR_DELIM..'register_hammer.lua')
|
||||||
|
@ -1,5 +1,17 @@
|
|||||||
-- Localize
|
-- Register replacements for the hammer. Entry ID is the ID of the node to
|
||||||
local replacements = uniham.replacements
|
-- replace and entry value is the ID of the node to replace with.
|
||||||
|
local replacements = {
|
||||||
|
-- sefault stone crushing
|
||||||
|
['default:obsidian'] = 'default:stone',
|
||||||
|
['default:stone'] = 'default:cobble',
|
||||||
|
['default:cobble'] = 'default:gravel',
|
||||||
|
['default:gravel'] = 'default:sand',
|
||||||
|
-- sandstone types to sand
|
||||||
|
['default:sandstone'] = 'default:sand',
|
||||||
|
['default:desert_sandstone'] = 'default:desert_cobble',
|
||||||
|
['default:desert_cobble'] = 'default:desert_sand',
|
||||||
|
['default:silver_sandstone'] = 'default:silver_sand',
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
-- Hammer use function
|
-- Hammer use function
|
||||||
|
Loading…
Reference in New Issue
Block a user