mild reagent prototype cleanup + other misc garbage (#22630)

This commit is contained in:
Nemanja
2023-12-16 22:34:13 -05:00
committed by GitHub
parent 00aa408501
commit 0a81038a17
8 changed files with 55 additions and 44 deletions

View File

@@ -1,7 +1,10 @@
using System.Linq;
using System.Text.Json.Serialization;
using Content.Server.Body.Components;
using Content.Shared.Body.Prototypes;
using Content.Shared.Chemistry.Reaction;
using Content.Shared.Chemistry.Reagent;
using Robust.Shared.Prototypes;
namespace Content.Server.GuideGenerator;
@@ -29,7 +32,7 @@ public sealed class ReagentEntry
public List<string> Recipes { get; } = new();
[JsonPropertyName("metabolisms")]
public Dictionary<string, ReagentEffectsEntry>? Metabolisms { get; }
public Dictionary<ProtoId<MetabolismGroupPrototype>, ReagentEffectsEntry>? Metabolisms { get; }
public ReagentEntry(ReagentPrototype proto)
{