From d595286dcc9790f5f0534ea0518f82f911445aae Mon Sep 17 00:00:00 2001 From: Swept Date: Sun, 27 Dec 2020 08:22:50 +0000 Subject: [PATCH] Tweaks volume of material per sheet in lathes. (#2852) * Initial * Tidies up file structure --- .../GameObjects/Components/Research/LatheComponent.cs | 4 ++-- .../Objects/{materials.yml => Misc/material_stacks.yml} | 0 Resources/Prototypes/{ => Reagents}/materials.yml | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename Resources/Prototypes/Entities/Objects/{materials.yml => Misc/material_stacks.yml} (100%) rename Resources/Prototypes/{ => Reagents}/materials.yml (100%) diff --git a/Content.Server/GameObjects/Components/Research/LatheComponent.cs b/Content.Server/GameObjects/Components/Research/LatheComponent.cs index 7e87b0d4e5..8de75b94db 100644 --- a/Content.Server/GameObjects/Components/Research/LatheComponent.cs +++ b/Content.Server/GameObjects/Components/Research/LatheComponent.cs @@ -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 Queue { get; } = new(); diff --git a/Resources/Prototypes/Entities/Objects/materials.yml b/Resources/Prototypes/Entities/Objects/Misc/material_stacks.yml similarity index 100% rename from Resources/Prototypes/Entities/Objects/materials.yml rename to Resources/Prototypes/Entities/Objects/Misc/material_stacks.yml diff --git a/Resources/Prototypes/materials.yml b/Resources/Prototypes/Reagents/materials.yml similarity index 100% rename from Resources/Prototypes/materials.yml rename to Resources/Prototypes/Reagents/materials.yml