skip entities with empty object descriptors

This commit is contained in:
Ayane Satomi 2022-08-01 23:55:22 +08:00
parent d9f0a819cd
commit 75dd0bab43
No known key found for this signature in database
GPG key ID: 431E3C36BEBE204B

View file

@ -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