aboutsummaryrefslogtreecommitdiff
path: root/assets/blender/gleis/rail_my_rt_switches.blend1
diff options
context:
space:
mode:
authororwell96 <mono96.mml@gmail.com>2017-01-24 20:41:37 +0100
committerorwell96 <mono96.mml@gmail.com>2017-01-24 20:41:37 +0100
commit29886d56571f465b448173cfc0ab0dded60d1727 (patch)
treea54016e8ecadeeb73d1a0d0822c39c205e40cf5a /assets/blender/gleis/rail_my_rt_switches.blend1
parenta2d0b1b8f2f6ba2864e1dbbfc2457583114152ea (diff)
downloadadvtrains-29886d56571f465b448173cfc0ab0dded60d1727.tar.gz
advtrains-29886d56571f465b448173cfc0ab0dded60d1727.tar.bz2
advtrains-29886d56571f465b448173cfc0ab0dded60d1727.zip
Fix crash when train went off track
Diffstat (limited to 'assets/blender/gleis/rail_my_rt_switches.blend1')
0 files changed, 0 insertions, 0 deletions
", { description = "Crafting Test Item: Stick", inventory_image = "unittests_stick.png", groups = { dummy = 1 }, }) minetest.register_craftitem("unittests:iron_lump", { description = "Crafting Test Item: Iron Lump", inventory_image = "unittests_iron_lump.png", groups = { dummy = 1 }, }) minetest.register_craftitem("unittests:steel_ingot", { description = "Crafting Test Item: Steel Ingot", inventory_image = "unittests_steel_ingot.png", groups = { dummy = 1 }, }) -- Recipes for tests: Normal crafting, cooking and fuel minetest.register_craft({ output = 'unittests:torch 4', recipe = { {'unittests:coal_lump'}, {'unittests:stick'}, } }) minetest.register_craft({ type = "cooking", output = "unittests:steel_ingot", recipe = "unittests:iron_lump", }) minetest.register_craft({ type = "fuel", recipe = "unittests:coal_lump", burntime = 40, }) -- Test tool repair minetest.register_craft({ type = "toolrepair", additional_wear = -0.05, }) -- Test the disable_repair=1 group minetest.register_tool("unittests:unrepairable_tool", { description = "Crafting Test Item: Unrepairable Tool", inventory_image = "unittests_unrepairable_tool.png", tool_capabilities = { groupcaps = { cracky = { times = {3, 2, 1}, } } }, groups = { disable_repair = 1, dummy = 1 } }) minetest.register_tool("unittests:repairable_tool", { description = "Crafting Test Item: Repairable Tool", inventory_image = "unittests_repairable_tool.png", tool_capabilities = { groupcaps = { cracky = { times = {3, 2, 1}, } } }, groups = { dummy = 1 },