Ignore:
Timestamp:
Feb 7, 2016, 12:47:06 PM (9 years ago)
Author:
alloc
Message:

Mod 6-8-12

Location:
binary-improvements/MapRendering
Files:
3 edited

Legend:

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

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

    r253 r256  
    3939                    JSONObject pJson = new JSONObject ();
    4040                    pJson.Add("steamid", new JSONString (sid));
     41                                        pJson.Add("entityid", new JSONNumber (p.EntityID));
    4142                    pJson.Add("ip", new JSONString (p.IP));
    4243                    pJson.Add("name", new JSONString (p.Name));
  • binary-improvements/MapRendering/Web/API/GetPlayersOnline.cs

    r244 r256  
    2525                                JSONObject p = new JSONObject();
    2626                                p.Add ("steamid", new JSONString (ci.playerId));
     27                                p.Add ("entityid", new JSONNumber (ci.entityId));
    2728                                p.Add ("ip", new JSONString (ci != null ? ci.ip : string.Empty));
    2829                                p.Add ("name", new JSONString (current.Value.EntityName));
Note: See TracChangeset for help on using the changeset viewer.