From 75dd0bab43a6a90bef5f4657bb54229cab9c1886 Mon Sep 17 00:00:00 2001 From: Ayane Satomi Date: Mon, 1 Aug 2022 23:55:22 +0800 Subject: [PATCH] skip entities with empty object descriptors --- starfallex/serverinfo.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/starfallex/serverinfo.lua b/starfallex/serverinfo.lua index abf6b0e..802e290 100644 --- a/starfallex/serverinfo.lua +++ b/starfallex/serverinfo.lua @@ -16,6 +16,9 @@ function getRunningChips() --exclude self if v == chip() then continue end + -- do not include empty objects + if v == {} then continue end + -- check if entry already exists if itExists(serverMetadata.runningChips, v) then continue