]> git.smokeofanarchy.ru Git - space-station-14.git/commitdiff
Add missing constructor in RandomSpawnLootEntry struct (#21721)
authorDrSmugleaf <DrSmugleaf@users.noreply.github.com>
Fri, 17 Nov 2023 17:21:15 +0000 (09:21 -0800)
committerGitHub <noreply@github.com>
Fri, 17 Nov 2023 17:21:15 +0000 (06:21 +1300)
Content.Shared/Procedural/Loot/RandomSpawnsLoot.cs

index a9b71e7b6198987a6a9b40ce5a8b812515b05cc5..e429eed402a98b14ea7907f825a785a052f884ee 100644 (file)
@@ -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<EntityPrototype>))]
     public string Proto { get; set; } = string.Empty;