Ignore:
Timestamp:
Jul 3, 2015, 4:16:11 PM (9 years ago)
Author:
alloc
Message:

Server fixes for A12

Location:
binary-improvements/MapRendering/Web
Files:
1 added
2 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/MapRendering/Web/API/GetLandClaims.cs

    r230 r238  
    2929                        result.Add ("claimowners", claimOwners);
    3030
    31                         Dictionary<Vector3i, PersistentPlayerData> d = GameManager.Instance.GetPersistentPlayerList ().positionToLPBlockOwner;
     31                        Dictionary<Vector3i, PersistentPlayerData> d = GameManager.Instance.GetPersistentPlayerList ().m_lpBlockMap;
    3232                        if (d != null) {
    3333                                World w = GameManager.Instance.World;
     
    4545                                        if (steamid.Length == 0 || kvp.Key.PlayerId.Equals (steamid)) {
    4646                                                string curID = kvp.Key.PlayerId;
    47                                                 bool isActive = w.LandClaimIsActive (kvp.Key);
     47                                                bool isActive = w.IsLandProtectionValidForPlayer (kvp.Key);
    4848
    4949                                                JSONObject owner = new JSONObject ();
  • binary-improvements/MapRendering/Web/Web.cs

    r230 r238  
    5656
    5757                                handlers.Add (
     58                                        "/itemicons/",
     59                                        new ItemIconHandler (
     60                                                "/itemicons/",
     61                                                true)
     62                                );
     63
     64                                handlers.Add (
    5865                                        "/map/",
    5966                                        new StaticHandler (
    6067                                                "/map/",
    61                                                 StaticDirectories.GetSaveGameDir () + "/map",
     68                                                GameUtils.GetSaveGameDir () + "/map",
    6269                                                MapRendering.MapRendering.GetTileCache (),
    6370                                                false)
Note: See TracChangeset for help on using the changeset viewer.