get_block_rotation, set_block_rotation

This commit is contained in:
MihailRis
2024-02-18 22:24:03 +03:00
parent 43db8ebba1
commit 8341485aef
3 changed files with 29 additions and 0 deletions
+2
View File
@@ -116,6 +116,8 @@ void lua::LuaState::createFuncs() {
addfunc("get_block_Z", lua_wrap_errors<l_get_block_z>);
addfunc("get_block_states", lua_wrap_errors<l_get_block_states>);
addfunc("set_block_states", lua_wrap_errors<l_set_block_states>);
addfunc("get_block_rotation", lua_wrap_errors<l_get_block_rotation>);
addfunc("set_block_rotation", lua_wrap_errors<l_set_block_rotation>);
addfunc("get_block_user_bits", lua_wrap_errors<l_get_block_user_bits>);
addfunc("set_block_user_bits", lua_wrap_errors<l_set_block_user_bits>);
}