Skip to content

Commit

Permalink
finaly
Browse files Browse the repository at this point in the history
  • Loading branch information
KillanGenifer committed Oct 25, 2024
1 parent 5f3b685 commit 474dd26
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Content.Server/Construction/MachineFrameSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ private bool TryInsertBoard(EntityUid uid, EntityUid used, MachineFrameComponent
return true;
}

// Frontier: restore upgradeable parts
// Corvax-Next: restore upgradeable parts
/// <returns>Whether or not the function had any effect. Does not indicate success.</returns>
private bool TryInsertPart(EntityUid uid, EntityUid used, MachineFrameComponent component, MachinePartComponent machinePart)
{
Expand Down
10 changes: 5 additions & 5 deletions Content.Shared/Lathe/LatheComponent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ public sealed partial class LatheComponent : Component
public SoundSpecifier? ProducingSound;

[DataField]
public string? ReagentOutputSlotId; // Corvax-Next
public string? ReagentOutputSlotId;

/// <summary>
/// The default amount that's displayed in the UI for selecting the print amount.
/// </summary>
[DataField, AutoNetworkedField]
public int DefaultProductionAmount = 1; // Corvax-Next
public int DefaultProductionAmount = 1;

#region Visualizer info
[DataField]
Expand All @@ -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

/// <summary>
Expand All @@ -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
/// <summary>
/// A modifier that changes how long it takes to print a recipe
/// </summary>
Expand Down

0 comments on commit 474dd26

Please sign in to comment.