Ignore:
Timestamp:
Apr 18, 2015, 4:27:57 PM (10 years ago)
Author:
alloc
Message:

Binary improvements

Location:
binary-improvements/7dtd-server-fixes/src/PersistentData
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/src/PersistentData/PersistentContainer.cs

    r146 r230  
    5454                                        return true;
    5555                                } catch (Exception e) {
    56                                         Log.Out ("Exception in PersistentContainer.Load: " + e.Message);
     56                                        Log.Error ("Exception in PersistentContainer.Load");
     57                                        Log.Exception (e);
    5758                                }
    5859                        }
  • binary-improvements/7dtd-server-fixes/src/PersistentData/Player.cs

    r228 r230  
    5959                        get {
    6060                                if (IsOnline) {
    61                                         return CommonMappingFunctions.GetEntityPlayer (clientInfo);
     61                                        return GameManager.Instance.World.Players.dict [clientInfo.entityId];
    6262                                } else {
    6363                                        return null;
     
    116116                        Log.Out ("Player set to online: " + steamId);
    117117                        clientInfo = ci;
    118                         entityId = CommonMappingFunctions.GetEntityID (ci);
    119                         name = CommonMappingFunctions.GetPlayerName (ci);
     118                        entityId = ci.entityId;
     119                        name = ci.playerName;
    120120                        ip = ci.ip;
    121121                }
Note: See TracChangeset for help on using the changeset viewer.