aboutsummaryrefslogtreecommitdiff
path: root/src/script/lua_api/l_env.cpp
diff options
context:
space:
mode:
authorElias Fleckenstein <eliasfleckenstein@web.de>2020-08-22 14:30:52 +0200
committerElias Fleckenstein <eliasfleckenstein@web.de>2020-08-22 14:30:52 +0200
commit2321e3da4c7f29ae06400e91e4e031777c6a5d9a (patch)
treef94a31199e674f1e2ef1ae5dc5582ce7d0cd0c90 /src/script/lua_api/l_env.cpp
parent90f66dad827d1aa149c20ee56efde7b3cbfc4a24 (diff)
downloaddragonfireclient-2321e3da4c7f29ae06400e91e4e031777c6a5d9a.tar.xz
Removed console output spammed by minetest.find_node_near
Diffstat (limited to 'src/script/lua_api/l_env.cpp')
-rw-r--r--src/script/lua_api/l_env.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/script/lua_api/l_env.cpp b/src/script/lua_api/l_env.cpp
index 8a72acee1..2ea3b08b9 100644
--- a/src/script/lua_api/l_env.cpp
+++ b/src/script/lua_api/l_env.cpp
@@ -796,7 +796,6 @@ int ModApiEnvMod::l_find_node_near(lua_State *L)
v3s16 p = pos + i;
content_t c = map.getNode(p).getContent();
if (CONTAINS(filter, c)) {
- std::cout << p.X << " " << p.Y << " " << p.Z << std::endl;
push_v3s16(L, p);
return 1;
}