Ignore:
Timestamp:
Apr 28, 2016, 1:41:44 PM (9 years ago)
Author:
alloc
Message:

Update Chat stuff to 14.6 b26

Location:
binary-improvements/MapRendering
Files:
2 edited

Legend:

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

    r250 r267  
    1010                }
    1111
     12//              public override void GameStartDone () {
     13//                      if (AllocsFixes.NetConnections.Servers.Web.Handlers.ItemIconHandler.Instance != null) {
     14//                              AllocsFixes.NetConnections.Servers.Web.Handlers.ItemIconHandler.Instance.LoadIcons ();
     15//                      }
     16//              }
     17
    1218                public override void CalcChunkColorsDone (Chunk _chunk) {
    1319                        AllocsFixes.MapRendering.MapRendering.RenderSingleChunk (_chunk);
  • binary-improvements/MapRendering/Web/Handlers/ItemIconHandler.cs

    r254 r267  
    99{
    1010        public class ItemIconHandler : PathHandler {
     11                private static ItemIconHandler instance = null;
     12                public static ItemIconHandler Instance {
     13                        get { return instance; }
     14                }
     15
    1116                private string staticPart;
    1217                private bool logMissingFiles;
     
    1722                        this.staticPart = staticPart;
    1823                        this.logMissingFiles = logMissingFiles;
     24                        ItemIconHandler.instance = this;
    1925                }
    2026
     
    4753                }
    4854
    49                 private bool LoadIcons () {
     55                public bool LoadIcons () {
    5056                        lock (icons) {
    5157                                if (loaded) {
Note: See TracChangeset for help on using the changeset viewer.