From 5af89270ec838df91301d59b7b29875a00787e62 Mon Sep 17 00:00:00 2001 From: LeMagnesium Date: Sat, 27 Dec 2014 18:35:33 +0100 Subject: [PATCH] Remove debug line in init.lua --- minetestforfun_game/mods/highlandpools/init.lua | 8 -------- 1 file changed, 8 deletions(-) diff --git a/minetestforfun_game/mods/highlandpools/init.lua b/minetestforfun_game/mods/highlandpools/init.lua index 34f007e0..a5561714 100644 --- a/minetestforfun_game/mods/highlandpools/init.lua +++ b/minetestforfun_game/mods/highlandpools/init.lua @@ -180,42 +180,34 @@ minetest.register_on_generated(function(minp, maxp, seed) local visd = area:index(x, yasurf-1, z - 1) if data[vie] == c_tree then highlandpools_remtree(x + 1, yasurf, z, area, data) - print("w at ".. x+1 ..","..yasurf..","..z) data[vie] = c_watsour elseif data[vie] == c_air or data[vie] == c_apple or data[vie] == c_leaves then - print("w at ".. x+1 ..","..yasurf..","..z) data[vie] = c_watsour end if data[viw] == c_tree then highlandpools_remtree(x - 1, yasurf, z, area, data) - print("w at ".. x-1 ..","..yasurf..","..z) data[viw] = c_watsour elseif data[viw] == c_air or data[viw] == c_apple or data[viw] == c_leaves then - print("w at ".. x-1 ..","..yasurf..","..z) data[viw] = c_watsour end if data[vin] == c_tree then highlandpools_remtree(x, yasurf, z + 1, area, data) - print("w at "..x..","..yasurf..","..z+1) data[vin] = c_watsour elseif data[vin] == c_air or data[vin] == c_apple or data[vin] == c_leaves then - print("w at "..x..","..yasurf..","..z+1) data[vin] = c_watsour end if data[vis] == c_tree then highlandpools_remtree(x, yasurf, z - 1, area, data) - print("w at "..x..","..yasurf..","..z-1) data[visd] = c_watsour elseif data[vis] == c_air or data[vis] == c_apple or data[vis] == c_leaves then - print("w at "..x..","..yasurf..","..z-1) data[vis] = c_watsour end end