Ignore:
Timestamp:
Aug 7, 2015, 10:18:37 AM (9 years ago)
Author:
alloc
Message:

Fixes: Web v8

Location:
binary-improvements/MapRendering
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/ModInfo.xml

    r245 r249  
    55                <Description value="Render the game map to image map tiles as it is uncovered" />
    66                <Author value="Christian 'Alloc' Illy" />
    7                 <Version value="7" />
     7                <Version value="8" />
    88                <Website value="http://7dtd.illy.bz" />
    99        </ModInfo>
  • binary-improvements/MapRendering/Web/Web.cs

    r247 r249  
    225225                                        WebConnection con = connectionHandler.LogIn (id, _req.RemoteEndPoint.Address.ToString ());
    226226                                        _con = con;
    227                                         //Log.Out ("Logged in with session id: {0}", con.SessionID);
    228                                         return GameManager.Instance.adminTools.GetAdminToolsClientInfo (id.ToString ()).PermissionLevel;
     227                                        int level = GameManager.Instance.adminTools.GetAdminToolsClientInfo (id.ToString ()).PermissionLevel;
     228                                        Log.Out ("Steam OpenID login from {0} with ID {1}, permission level {2}", _req.RemoteEndPoint.ToString (), con.SteamID, level);
     229                                        return level;
    229230                                } else {
    230231                                        Log.Out ("Steam OpenID login failed from {0}", _req.RemoteEndPoint.ToString ());
Note: See TracChangeset for help on using the changeset viewer.