feat(ui): stub Script_BNFeaturesEnabled

This commit is contained in:
fallenoak 2026-02-08 13:11:45 -06:00
parent c6ddfc0d87
commit 14d14dacb0
No known key found for this signature in database
GPG Key ID: 7628F8E61AEA070D

View File

@ -206,7 +206,10 @@ int32_t Script_IsBNLogin(lua_State* L) {
} }
int32_t Script_BNFeaturesEnabled(lua_State* L) { int32_t Script_BNFeaturesEnabled(lua_State* L) {
WHOA_UNIMPLEMENTED(0); // TODO real implementation
lua_pushboolean(L, false);
return 1;
} }
int32_t Script_BNRequestFOFInfo(lua_State* L) { int32_t Script_BNRequestFOFInfo(lua_State* L) {