From 594202dde93e93478b68247007480fed5bf14bce Mon Sep 17 00:00:00 2001 From: MysterD Date: Mon, 7 Mar 2022 22:20:53 -0800 Subject: [PATCH] Allow network_init_object() to use fields that don't start with o --- src/pc/lua/smlua_functions.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/pc/lua/smlua_functions.c b/src/pc/lua/smlua_functions.c index fd1763525..51b0ad026 100644 --- a/src/pc/lua/smlua_functions.c +++ b/src/pc/lua/smlua_functions.c @@ -111,7 +111,7 @@ int smlua_func_network_init_object(lua_State* L) { continue; } const char* fieldIdentifier = smlua_to_string(L, -1); - if (!gSmLuaConvertSuccess || fieldIdentifier[0] != 'o') { + if (!gSmLuaConvertSuccess) { LOG_LUA("Invalid field passed to network_init_object()"); lua_pop(L, 1); // pop value continue; @@ -121,7 +121,8 @@ int smlua_func_network_init_object(lua_State* L) { if (data == NULL) { data = smlua_get_custom_field(L, LOT_OBJECT, lua_gettop(L)); } - if (data == NULL) { + bool validLvt = (data->valueType == LVT_U32) || (data->valueType == LVT_S32) || (data->valueType == LVT_F32); + if (data == NULL || !validLvt) { LOG_LUA("Invalid field passed to network_init_object(): %s", fieldIdentifier); lua_pop(L, 1); // pop value continue;