diff --git a/source/game/scripting/StarWorldLuaBindings.cpp b/source/game/scripting/StarWorldLuaBindings.cpp index 9906eec..8d7d1bd 100644 --- a/source/game/scripting/StarWorldLuaBindings.cpp +++ b/source/game/scripting/StarWorldLuaBindings.cpp @@ -357,6 +357,16 @@ namespace LuaBindings { if (auto clientWorld = as(world)) { callbacks.registerCallbackWithSignature("clientWindow", bind(ClientWorldCallbacks::clientWindow, clientWorld)); + callbacks.registerCallback("players", [clientWorld]() { + List playerIds; + + clientWorld->forAllEntities([&](EntityPtr const& entity) { + if (entity->entityType() == EntityType::Player) + playerIds.emplace_back(entity->entityId()); + }); + + return playerIds; + }); } if (auto serverWorld = as(world)) {