feat(glue): implement Script_GetSelectedSex

This commit is contained in:
fallenoak 2025-12-29 20:18:02 -06:00
parent dc2e3744ce
commit 702893845c
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -72,7 +72,9 @@ int32_t Script_GetSelectedRace(lua_State* L) {
} }
int32_t Script_GetSelectedSex(lua_State* L) { int32_t Script_GetSelectedSex(lua_State* L) {
WHOA_UNIMPLEMENTED(0); lua_pushnumber(L, g_glueFrameScriptGenders[CCharacterCreation::s_character->m_data.sexID]);
return 1;
} }
int32_t Script_GetSelectedClass(lua_State* L) { int32_t Script_GetSelectedClass(lua_State* L) {