From 7f5e97357e4258e3e0d0629288e99d83921a6078 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Sat, 24 Aug 2019 22:53:11 +0200 Subject: [PATCH] Remove useless call --- init.lua | 4 ---- 1 file changed, 4 deletions(-) diff --git a/init.lua b/init.lua index 34fdfcd..1daa159 100644 --- a/init.lua +++ b/init.lua @@ -152,7 +152,6 @@ end local function make_pyramid(pos, brick, sandstone, stone, sand) local set_to_brick = {} - local set_to_sand = {} local set_to_stone = {} -- Build pyramid for iy=0,math.random(10,PYRA_Wh),1 do @@ -167,9 +166,6 @@ local function make_pyramid(pos, brick, sandstone, stone, sand) end minetest.bulk_set_node(set_to_stone , {name=stone}) minetest.bulk_set_node(set_to_brick, {name=brick}) - if sand ~= "ignore" then - minetest.bulk_set_node(set_to_sand, {name=sand}) - end end local function make(pos, brick, sandstone, stone, sand, ptype, room_id)