damiemk
2022-11-17 aad1b2875a4cf9564cc136208ba1222d199bf805
concrete/init.lua
@@ -1,4 +1,4 @@
--Minetest 0.4.7 mod: concrete
--Minetest 0.4.7 mod: concrete
--(c) 2013 by RealBadAngel <mk@realbadangel.pl>
local technic = rawget(_G, "technic") or {}
@@ -14,13 +14,6 @@
for i = 32, 63 do
   minetest.register_alias("technic:concrete_post"..i,
         "technic:concrete_post_with_platform")
end
local steel_ingot
if minetest.get_modpath("technic_worldgen") then
   steel_ingot = "technic:carbon_steel_ingot"
else
   steel_ingot = "default:steel_ingot"
end
minetest.register_craft({
@@ -89,15 +82,15 @@
   groups={cracky=1, level=2},
   sounds = default.node_sound_stone_defaults(),
   paramtype = "light",
   drawtype = "nodebox",
   drawtype = "nodebox",
   node_box = {
      type = "fixed",
      fixed = {box_platform}
   },
   on_place = function (itemstack, placer, pointed_thing)
      local node = minetest.get_node(pointed_thing.under)
      if node.name ~= "technic:concrete_post" then
         return minetest.item_place_node(itemstack, placer, pointed_thing)
      if node.name ~= "technic:concrete_post" then
         return minetest.item_place_node(itemstack, placer, pointed_thing)
      end
      minetest.set_node(pointed_thing.under, {name="technic:concrete_post_with_platform"})
      itemstack:take_item()