Skip to content

Commit

Permalink
unregister maptools coins
Browse files Browse the repository at this point in the history
  • Loading branch information
BuckarooBanzay committed May 5, 2020
1 parent 5b452c2 commit ea0ad19
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 1 deletion.
5 changes: 5 additions & 0 deletions init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,11 @@ if minetest.get_modpath("player_monoids") then
dofile(MP.."/spawn_fast_walk.lua")
end

-- maptools custmization
if minetest.get_modpath("maptools") then
dofile(MP.."/maptools.lua")
end

-- custom powered stand from scifi_nodes
if minetest.get_modpath("scifi_nodes") then
dofile(MP.."/scifi_override.lua")
Expand Down
7 changes: 7 additions & 0 deletions maptools.lua
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@

-- remove redundant coins from maptools mod

minetest.unregister_item("maptools:copper_coin")
minetest.unregister_item("maptools:silver_coin")
minetest.unregister_item("maptools:gold_coin")

3 changes: 2 additions & 1 deletion mod.conf
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,6 @@ bonemeal,
planetoidgen,
advtrains_platform,
prefab,
vacuum
vacuum,
maptools
"""

0 comments on commit ea0ad19

Please sign in to comment.