Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ public class CommandHandler
),
["clearlcd"] = new Command(
"SUGMA.Utils",
"Clear all image lcds.",
"Manually clear all image lcds.",
args => SUtils.ClearImageLcds()
)

Expand Down Expand Up @@ -211,4 +211,4 @@ public Command(string modName, string helpText, Action<string[]> action)
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ public static bool HasDefinition(string subtypeId) =>
{
SubtypeId = "Heat_FlatRadiator",
HeatCapacity = 0,
HeatDissipation = 2,
HeatDissipation = 5,
LoSCheck = radiatorBlock => CheckGridIntersect(radiatorBlock, Vector3I.Zero, Vector3I.Backward) ? 0 : 1
},
new HeatPartDefinition
{
SubtypeId = "MDA_Radiator_1x2",
HeatCapacity = 0,
HeatDissipation = 4,
HeatDissipation = 10,
LoSCheck = radiatorBlock =>
{
float occlusionModifier = 0;
Expand All @@ -73,7 +73,7 @@ public static bool HasDefinition(string subtypeId) =>
{
SubtypeId = "RadiatorPanel",
HeatCapacity = 0,
HeatDissipation = 2,
HeatDissipation = 10f,
LoSCheck = radiatorBlock =>
{
float occlusionModifier = 0;
Expand All @@ -90,7 +90,7 @@ public static bool HasDefinition(string subtypeId) =>
{
SubtypeId = "ActiveRadiator",
HeatCapacity = 60,
HeatDissipation = 50,
HeatDissipation = 150,
LoSCheck = radiatorBlock =>
{
float occlusionModifier = 0;
Expand Down
Loading
Loading