diff --git a/Content.Server/Construction/MachineFrameSystem.cs b/Content.Server/Construction/MachineFrameSystem.cs
index 9b3ea962f4a..04466149501 100644
--- a/Content.Server/Construction/MachineFrameSystem.cs
+++ b/Content.Server/Construction/MachineFrameSystem.cs
@@ -167,7 +167,7 @@ private bool TryInsertBoard(EntityUid uid, EntityUid used, MachineFrameComponent
return true;
}
- // Frontier: restore upgradeable parts
+ // Corvax-Next: restore upgradeable parts
/// Whether or not the function had any effect. Does not indicate success.
private bool TryInsertPart(EntityUid uid, EntityUid used, MachineFrameComponent component, MachinePartComponent machinePart)
{
diff --git a/Content.Shared/Lathe/LatheComponent.cs b/Content.Shared/Lathe/LatheComponent.cs
index af8de857551..4acbe01e89a 100644
--- a/Content.Shared/Lathe/LatheComponent.cs
+++ b/Content.Shared/Lathe/LatheComponent.cs
@@ -34,13 +34,13 @@ public sealed partial class LatheComponent : Component
public SoundSpecifier? ProducingSound;
[DataField]
- public string? ReagentOutputSlotId; // Corvax-Next
+ public string? ReagentOutputSlotId;
///
/// The default amount that's displayed in the UI for selecting the print amount.
///
[DataField, AutoNetworkedField]
- public int DefaultProductionAmount = 1; // Corvax-Next
+ public int DefaultProductionAmount = 1;
#region Visualizer info
[DataField]
@@ -50,10 +50,10 @@ public sealed partial class LatheComponent : Component
public string? RunningState;
[DataField]
- public string? UnlitIdleState; // Corvax-Next
+ public string? UnlitIdleState;
[DataField]
- public string? UnlitRunningState; // Corvax-Next
+ public string? UnlitRunningState;
#endregion
///
@@ -75,7 +75,7 @@ public sealed partial class LatheComponent : Component
[DataField, ViewVariables(VVAccess.ReadWrite), AutoNetworkedField]
public float MaterialUseMultiplier = 1;
- //Corvax-Next Upgrade Code Restore
+ // Corvax-Next Upgrade Code Restore
///
/// A modifier that changes how long it takes to print a recipe
///