From 5cc86cf43c9ec2b25092552fe1d79d876bb3dde0 Mon Sep 17 00:00:00 2001
From: Milan* <tchncs@vivaldi.net>
Date: Thu, 29 Jun 2017 13:03:17 +0200
Subject: [PATCH] add illuna:stonebrick to technic cnc nodes

---
 init.lua    | 32 +++-----------------------------
 technic.lua |  4 ++++
 2 files changed, 7 insertions(+), 29 deletions(-)
 create mode 100644 technic.lua

diff --git a/init.lua b/init.lua
index 5ef1b1e..a4b8d89 100644
--- a/init.lua
+++ b/init.lua
@@ -15,32 +15,6 @@ end
 if not minetest.get_modpath("ethereal") then
     dofile(minetest.get_modpath("illuna").."/water.lua")
 end
---[[
-minetest.register_on_joinplayer(function(player)
-    --skinname = player:get_player_name()
-    local customskin=player:get_player_name()..".png"
-    --local io.open(minetest.get_modpath("illuna").."/textures/"..player:get_player_name()..".png","r"
-    --if customskin~=nil
-     --   then
-     --       io.close(customskin)
-     player:set_properties({
-         visual = "mesh",
-         mesh = "character.b3d",
-         visual_size = {x=1, y=1},
-         textures = {"singleplayer.png"},
-     })
-     core.chat_send_all(customskin)
-     --return ""
-     --   else
-           -- core.chat_send_all("found nothing :(, anyway...")
-    end
-        player:set_properties({
-            visual = "mesh",
-            textures = {texture..".png"},
-            visual_size = {x=1, y=1},
-        })
-    else
-        return "meh.."
-    end
-end)
-]]
+if minetest.get_modpath("technic") then
+    dofile(minetest.get_modpath("illuna").."/technic.lua")
+end
diff --git a/technic.lua b/technic.lua
new file mode 100644
index 0000000..dd8c6a3
--- /dev/null
+++ b/technic.lua
@@ -0,0 +1,4 @@
+technic.cnc.register_all("illuna:stonebrick",
+                {cracky=3},
+                {"default_stone_brick.png"},
+                "Stonebrick")
-- 
GitLab