diff --git a/Content/Textures/ArachnaeSwarm/Building/ARA_BioforgeIncubatorPawn.png b/Content/Textures/ArachnaeSwarm/Building/ARA_BioforgeIncubatorPawn.png
new file mode 100644
index 0000000..7244342
Binary files /dev/null and b/Content/Textures/ArachnaeSwarm/Building/ARA_BioforgeIncubatorPawn.png differ
diff --git a/Content/Textures/ArachnaeSwarm/Building/ARA_JellyVat.png b/Content/Textures/ArachnaeSwarm/Building/ARA_JellyVat.png
new file mode 100644
index 0000000..9c4c71d
Binary files /dev/null and b/Content/Textures/ArachnaeSwarm/Building/ARA_JellyVat.png differ
diff --git a/Source/ArachnaeSwarm/ArachnaeSwarm.csproj b/Source/ArachnaeSwarm/ArachnaeSwarm.csproj
index 04de4a0..e340c96 100644
--- a/Source/ArachnaeSwarm/ArachnaeSwarm.csproj
+++ b/Source/ArachnaeSwarm/ArachnaeSwarm.csproj
@@ -223,6 +223,9 @@
+
+
+
diff --git a/Source/ArachnaeSwarm/Utils/CompTempControl_Fixed.cs b/Source/ArachnaeSwarm/Utils/CompTempControl_Fixed.cs
new file mode 100644
index 0000000..97d9f80
--- /dev/null
+++ b/Source/ArachnaeSwarm/Utils/CompTempControl_Fixed.cs
@@ -0,0 +1,33 @@
+using RimWorld;
+using Verse;
+
+namespace ArachnaeSwarm
+{
+ // First, we need a new properties class that points to our new component class
+ public class CompProperties_TempControl_Fixed : CompProperties_TempControl
+ {
+ public CompProperties_TempControl_Fixed()
+ {
+ compClass = typeof(CompTempControl_Fixed);
+ }
+ }
+
+ // This is our new component class that inherits from the original
+ public class CompTempControl_Fixed : CompTempControl
+ {
+ // We override the problematic method
+ public override string CompInspectStringExtra()
+ {
+ // Call the original method to get its string
+ string baseString = base.CompInspectStringExtra();
+
+ // If the string is not null, trim any whitespace from the end and return it
+ if (!string.IsNullOrEmpty(baseString))
+ {
+ return baseString.TrimEnd();
+ }
+
+ return baseString;
+ }
+ }
+}
\ No newline at end of file