Tweaks volume of material per sheet in lathes. (#2852)

* Initial

* Tidies up file structure
This commit is contained in:
Swept
2020-12-27 08:22:50 +00:00
committed by GitHub
parent b554480a42
commit d595286dcc
3 changed files with 2 additions and 2 deletions

View File

@@ -1,4 +1,4 @@
#nullable enable
#nullable enable
using System;
using System.Collections.Generic;
using System.Linq;
@@ -26,7 +26,7 @@ namespace Content.Server.GameObjects.Components.Research
[ComponentReference(typeof(IActivate))]
public class LatheComponent : SharedLatheComponent, IInteractUsing, IActivate
{
public const int VolumePerSheet = 3750;
public const int VolumePerSheet = 100;
[ViewVariables]
public Queue<LatheRecipePrototype> Queue { get; } = new();