Skip to content

Commit

Permalink
Fix ArchetypeBlockInfoCollectionId issues with numeric collections
Browse files Browse the repository at this point in the history
  • Loading branch information
BigBang1112 committed Dec 28, 2024
1 parent 6e9e9d2 commit fde2747
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Src/GBX.NET/Engines/GameData/CGameBlockItem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ public partial class CGameBlockItem
[AppliedWithChunk<Chunk2E025000>]
public string ArchetypeBlockInfoId { get => archetypeBlockInfoId; set => archetypeBlockInfoId = value; }

private string archetypeBlockInfoCollectionId = string.Empty;
private Id archetypeBlockInfoCollectionId = new();
[AppliedWithChunk<Chunk2E025000>]
public string ArchetypeBlockInfoCollectionId { get => archetypeBlockInfoCollectionId; set => archetypeBlockInfoCollectionId = value; }
public Id ArchetypeBlockInfoCollectionId { get => archetypeBlockInfoCollectionId; set => archetypeBlockInfoCollectionId = value; }

private List<Mobil> customizedVariants = [];
[AppliedWithChunk<Chunk2E025000>]
Expand Down

0 comments on commit fde2747

Please sign in to comment.