Ignore:
Timestamp:
Dec 12, 2014, 10:43:17 PM (10 years ago)
Author:
alloc
Message:

fixes

Location:
binary-improvements/7dtd-server-fixes/src
Files:
2 edited

Legend:

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

    r208 r211  
    1818// and "{Major}.{Minor}.{Build}.*" will update just the revision.
    1919
    20 [assembly: AssemblyVersion("0.102.*")]
     20[assembly: AssemblyVersion("0.103.*")]
    2121
    2222// The following attributes are used to specify the signing key for the assembly,
  • binary-improvements/7dtd-server-fixes/src/CommonMappingFunctions.cs

    r203 r211  
    158158                {
    159159                        try {
    160                                 Dictionary<string, CSteamID> uToID = Steam.Authentication.Server.usersToIDs;
    161                                 foreach (KeyValuePair<string, CSteamID> kvp in uToID) {
    162                                         string curId = string.Empty + kvp.Value.m_SteamID;
     160                                foreach (string name in Steam.Authentication.Server.usersToIDs.Keys) {
     161                                        string curId = string.Empty + Steam.Authentication.Server.usersToIDs[name].steamID.m_SteamID;
    163162                                        if (curId.Equals (_steamId)) {
    164                                                 return GetClientInfoFromPlayerName (kvp.Key, false);
     163                                                return GetClientInfoFromPlayerName (name, false);
    165164                                        }
    166165                                }
Note: See TracChangeset for help on using the changeset viewer.