- Timestamp:
- Jun 16, 2023, 3:31:26 PM (17 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/LandClaimList.cs
r446 r448 45 45 PlatformUserIdentifierAbs platformId = kvp.Key.PlatformUserIdentifier; 46 46 PlatformUserIdentifierAbs internalId = kvp.Key.UserIdentifier; 47 PlatformUserIdentifierAbs crossPlatformId = platformId .Equals (internalId) ? null : internalId;47 PlatformUserIdentifierAbs crossPlatformId = platformId == null || platformId.Equals (internalId) ? null : internalId; 48 48 p = new Player (internalId, platformId, crossPlatformId); 49 49 }
Note:
See TracChangeset
for help on using the changeset viewer.