From: DrSmugleaf Date: Fri, 17 Nov 2023 17:21:15 +0000 (-0800) Subject: Add missing constructor in RandomSpawnLootEntry struct (#21721) X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=9ec80aad9a9b36457cad98d170731ceb40ca100b;p=space-station-14.git Add missing constructor in RandomSpawnLootEntry struct (#21721) --- 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;