feat(ui): stub Script_BNConnected

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

View File

@ -188,7 +188,10 @@ int32_t Script_BNReportPlayer(lua_State* L) {
} }
int32_t Script_BNConnected(lua_State* L) { int32_t Script_BNConnected(lua_State* L) {
WHOA_UNIMPLEMENTED(0); // TODO real implementation
lua_pushboolean(L, false);
return 1;
} }
int32_t Script_BNFeaturesEnabledAndConnected(lua_State* L) { int32_t Script_BNFeaturesEnabledAndConnected(lua_State* L) {