diff options
author | Calinou <calinou9999spam@gmail.com> | 2013-07-11 21:54:15 +0200 |
---|---|---|
committer | Calinou <calinou9999spam@gmail.com> | 2013-07-11 21:54:15 +0200 |
commit | 8b1c7c506de9004f54290e7815e4b76d28b18fea (patch) | |
tree | 5d937e4378a38261824721f1d745b1afe068541e /init.lua | |
parent | 5ec13858bc2021c60366e7c002ee26e08e600f4f (diff) |
Put mod load print at bottom; fix crash with putting strings in number fields
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -22,8 +22,6 @@ dofile(minetest.get_modpath("moreblocks").."/stairsplus/aliases.lua") dofile(minetest.get_modpath("moreblocks").."/stairsplus.lua")
dofile(minetest.get_modpath("moreblocks").."/circular_saw.lua")
-print(S("[moreblocks] loaded."))
-
--[[
****
More Blocks
@@ -356,3 +354,5 @@ minetest.register_craftitem("moreblocks:nothing", { inventory_image = "invisible.png",
on_use = minetest.item_eat(0),
})
+
+print(S("[moreblocks] loaded."))
|