From aad1b2875a4cf9564cc136208ba1222d199bf805 Mon Sep 17 00:00:00 2001
From: damiemk <80431810+Wah7@users.noreply.github.com>
Date: Thu, 17 Nov 2022 19:59:39 +0100
Subject: [PATCH] Add Japanese translation (#613)

---
 concrete/init.lua |   15 ++++-----------
 1 files changed, 4 insertions(+), 11 deletions(-)

diff --git a/concrete/init.lua b/concrete/init.lua
index d309613..82b4098 100644
--- a/concrete/init.lua
+++ b/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()

--
Gitblit v1.8.0