refactor: group member's claim indices into one list per player

This commit is contained in:
2026-07-12 18:41:51 +02:00
parent cf17697a5e
commit 3b63c5b4af
+1 -1
View File
@@ -10,7 +10,7 @@ public class ClaimLinkMember
public string OwnerPlayerUid = ""; public string OwnerPlayerUid = "";
[ProtoMember(2)] [ProtoMember(2)]
public int LocalClaimIndex; public List<int> LocalClaimIndices = new();
} }
[ProtoContract] [ProtoContract]