diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-08-22 14:30:52 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-08-22 14:30:52 +0200 |
commit | 2321e3da4c7f29ae06400e91e4e031777c6a5d9a (patch) | |
tree | f94a31199e674f1e2ef1ae5dc5582ce7d0cd0c90 /src/script/lua_api/l_env.cpp | |
parent | 90f66dad827d1aa149c20ee56efde7b3cbfc4a24 (diff) | |
download | dragonfireclient-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.cpp | 1 |
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; } |