1
0
mirror of https://github.com/luanti-org/luanti.git synced 2025-10-15 17:35:37 +02:00

Make string to v3f parsing consistent, replace core.setting_get_pos() by core.settings:get_pos() (#15438)

Co-authored-by: sfan5 <sfan5@live.de>
Co-authored-by: Lars Müller <34514239+appgurueu@users.noreply.github.com>
This commit is contained in:
AFCMS
2024-12-04 18:19:46 +01:00
committed by GitHub
parent 18caf3a18d
commit e545e96d2b
17 changed files with 162 additions and 45 deletions

View File

@@ -29,6 +29,9 @@ private:
// get_flags(self, key) -> key/value table
static int l_get_flags(lua_State *L);
// get_pos(self, key) -> vector or nil
static int l_get_pos(lua_State *L);
// set(self, key, value)
static int l_set(lua_State *L);
@@ -38,6 +41,9 @@ private:
// set_np_group(self, key, value)
static int l_set_np_group(lua_State *L);
// set_pos(self, key, value)
static int l_set_pos(lua_State *L);
// remove(self, key) -> success
static int l_remove(lua_State *L);