+ {resourcesTransferred.map((c, index) => (
+ {`${RESOURCES[c.resource].icon} ${c.removed}`}
+ ))}
+
+ );
+};
diff --git a/src/components/Factory/data/buildings.ts b/src/components/Factory/data/buildings.ts
index 4c7c02855..e7c971bd3 100644
--- a/src/components/Factory/data/buildings.ts
+++ b/src/components/Factory/data/buildings.ts
@@ -1,6 +1,11 @@
import type { BuildingClass } from "../types/buildings";
-export const SPECIAL_BUILDINGS = ["firepit", "marketplace", "granary"]; // Buildings with special processing logic that doesn't fit the standard production model
+export const SPECIAL_BUILDINGS = [
+ "firepit",
+ "marketplace",
+ "storagepit",
+ "granary",
+]; // Buildings with special processing logic that doesn't fit the standard production model
export const BUILDINGS: Record