Add droppers array to state update: ensure droppers data is handled correctly in the state from bridge

This commit is contained in:
MayaTheShy
2026-03-21 19:41:56 -04:00
parent 75f785d8da
commit fcfef379be

View File

@@ -442,6 +442,7 @@ function updateStateFromBridge(data) {
barrelOk: data.cache.barrelOk || false,
furnaceCount: data.cache.furnaceCount || 0,
furnaceStatus: normalizedFurnaces,
droppers: Array.isArray(data.cache.droppers) ? data.cache.droppers : [],
};
}