Changeset 211 for binary-improvements
- Timestamp:
- Dec 12, 2014, 10:43:17 PM (10 years ago)
- Location:
- binary-improvements
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/AssemblyInfo.cs
r208 r211 18 18 // and "{Major}.{Minor}.{Build}.*" will update just the revision. 19 19 20 [assembly: AssemblyVersion("0.10 2.*")]20 [assembly: AssemblyVersion("0.103.*")] 21 21 22 22 // The following attributes are used to specify the signing key for the assembly, -
binary-improvements/7dtd-server-fixes/src/CommonMappingFunctions.cs
r203 r211 158 158 { 159 159 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; 163 162 if (curId.Equals (_steamId)) { 164 return GetClientInfoFromPlayerName ( kvp.Key, false);163 return GetClientInfoFromPlayerName (name, false); 165 164 } 166 165 } -
binary-improvements/bin/Release/7dtd-server-fixes_version.txt
r208 r211 1 Version: 0.10 2.5448.378211 Version: 0.103.5459.40864
Note:
See TracChangeset
for help on using the changeset viewer.