Skip to content

Commit

Permalink
Showing 3 changed files with 4 additions and 1 deletion.
Binary file modified GameData/RP-0/Plugins/RP0.dll
Binary file not shown.
Binary file modified GameData/RP-0/Plugins/RP0KCTBinder.dll
Binary file not shown.
5 changes: 4 additions & 1 deletion Source/Tooling/ModuleToolingDiamLen.cs
Original file line number Diff line number Diff line change
@@ -15,7 +15,10 @@ public virtual string GetDimensions()
{
float d, l;
GetDimensions(out d, out l);
return d.ToString("F2") + "m x " + l.ToString("F2") + "m";
if (l != 0f)
return d.ToString("F2") + "m x " + l.ToString("F2") + "m";
else
return d.ToString("F2") + "m";
}

public override float GetToolingCost()

0 comments on commit 277e9c5

Please sign in to comment.