Ignore:
Timestamp:
Jun 16, 2023, 3:31:26 PM (17 months ago)
Author:
alloc
Message:

24_29_42

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/LandClaimList.cs

    r446 r448  
    4545                                        PlatformUserIdentifierAbs platformId = kvp.Key.PlatformUserIdentifier;
    4646                                        PlatformUserIdentifierAbs internalId = kvp.Key.UserIdentifier;
    47                                         PlatformUserIdentifierAbs crossPlatformId = platformId.Equals (internalId) ? null : internalId;
     47                                        PlatformUserIdentifierAbs crossPlatformId = platformId == null || platformId.Equals (internalId) ? null : internalId;
    4848                                        p = new Player (internalId, platformId, crossPlatformId);
    4949                                }
Note: See TracChangeset for help on using the changeset viewer.