From 9ec80aad9a9b36457cad98d170731ceb40ca100b Mon Sep 17 00:00:00 2001 From: DrSmugleaf Date: Fri, 17 Nov 2023 09:21:15 -0800 Subject: [PATCH] Add missing constructor in RandomSpawnLootEntry struct (#21721) --- Content.Shared/Procedural/Loot/RandomSpawnsLoot.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Procedural/Loot/RandomSpawnsLoot.cs b/Content.Shared/Procedural/Loot/RandomSpawnsLoot.cs index a9b71e7b61..e429eed402 100644 --- a/Content.Shared/Procedural/Loot/RandomSpawnsLoot.cs +++ b/Content.Shared/Procedural/Loot/RandomSpawnsLoot.cs @@ -14,7 +14,7 @@ public sealed partial class RandomSpawnsLoot : IDungeonLoot } [DataDefinition] -public partial record struct RandomSpawnLootEntry : IBudgetEntry +public partial record struct RandomSpawnLootEntry() : IBudgetEntry { [ViewVariables(VVAccess.ReadWrite), DataField("proto", required: true, customTypeSerializer:typeof(PrototypeIdSerializer))] public string Proto { get; set; } = string.Empty; -- 2.51.2