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); }