From 983017a0c9627e99f847e73872812a64fd7b28a6 Mon Sep 17 00:00:00 2001 From: Kamil Czarniecki Date: Tue, 4 Nov 2025 22:15:20 +0100 Subject: [PATCH] #899 Disable map temperature check in `TryPlantNew` by setting `checkMapTemperature: false` in `CanEverPlantAt` condition check --- Source/ProjectRimFactory/CultivatorTools/Building_Cultivator.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/ProjectRimFactory/CultivatorTools/Building_Cultivator.cs b/Source/ProjectRimFactory/CultivatorTools/Building_Cultivator.cs index 2ddc44b7..203d0157 100644 --- a/Source/ProjectRimFactory/CultivatorTools/Building_Cultivator.cs +++ b/Source/ProjectRimFactory/CultivatorTools/Building_Cultivator.cs @@ -87,7 +87,7 @@ private void TryPlantNew(IntVec3 c, ThingDef plantDef) //Only Plant if seed is available if (!SeedsPleaseSupport.TryPlantNew(plantDef, SeedsPleaseSupport.InputArea(this), Map)) return; } - if (plantDef.CanEverPlantAt(c, Map) && PlantUtility.AdjacentSowBlocker(plantDef, c, Map) == null) + if (plantDef.CanEverPlantAt(c, Map, checkMapTemperature: false) && PlantUtility.AdjacentSowBlocker(plantDef, c, Map) == null) { GenPlace.TryPlaceThing(ThingMaker.MakeThing(plantDef), c, Map, ThingPlaceMode.Direct); }