summaryrefslogtreecommitdiff
path: root/src/script/cpp_api/s_node.cpp
diff options
context:
space:
mode:
authorRui <rui.minetest@gmail.com>2017-09-01 20:40:09 +0900
committerLoïc Blot <nerzhul@users.noreply.github.com>2017-09-01 13:40:09 +0200
commitc0dac4d9284b61c5ff411cbd45786ed14c200f37 (patch)
treea7c4c6a260335d24b672720120698648149d63b4 /src/script/cpp_api/s_node.cpp
parentbf403b923ab4a1e11447b3f81d54d5d0c1124f65 (diff)
downloadminetest-c0dac4d9284b61c5ff411cbd45786ed14c200f37.tar.gz
minetest-c0dac4d9284b61c5ff411cbd45786ed14c200f37.tar.bz2
minetest-c0dac4d9284b61c5ff411cbd45786ed14c200f37.zip
Remove nodeupdate completely (#6358)
Diffstat (limited to 'src/script/cpp_api/s_node.cpp')
-rw-r--r--src/script/cpp_api/s_node.cpp24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/script/cpp_api/s_node.cpp b/src/script/cpp_api/s_node.cpp
index 591e26975..c8f85317e 100644
--- a/src/script/cpp_api/s_node.cpp
+++ b/src/script/cpp_api/s_node.cpp
@@ -270,27 +270,3 @@ void ScriptApiNode::node_on_receive_fields(v3s16 p,
PCALL_RES(lua_pcall(L, 4, 0, error_handler));
lua_pop(L, 1); // Pop error handler
}
-
-void ScriptApiNode::node_falling_update(v3s16 p)
-{
- SCRIPTAPI_PRECHECKHEADER
-
- int error_handler = PUSH_ERROR_HANDLER(L);
-
- lua_getglobal(L, "nodeupdate");
- push_v3s16(L, p);
- PCALL_RES(lua_pcall(L, 1, 0, error_handler));
- lua_pop(L, 1); // Pop error handler
-}
-
-void ScriptApiNode::node_falling_update_single(v3s16 p)
-{
- SCRIPTAPI_PRECHECKHEADER
-
- int error_handler = PUSH_ERROR_HANDLER(L);
-
- lua_getglobal(L, "nodeupdate_single");
- push_v3s16(L, p);
- PCALL_RES(lua_pcall(L, 1, 0, error_handler));
- lua_pop(L, 1); // Pop error handler
-}