Ignore:
Timestamp:
Jan 19, 2019, 6:12:21 PM (6 years ago)
Author:
alloc
Message:

Fixed game version compatibility of GamePrefs
Code style cleanup (mostly argument names)

File:
1 edited

Legend:

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

    r333 r351  
    168168                }
    169169
    170                 public Player (string steamId) {
    171                         this.steamId = steamId;
     170                public Player (string _steamId) {
     171                        steamId = _steamId;
    172172                        inventory = new Inventory ();
    173173                }
     
    193193                }
    194194
    195                 public void SetOnline (ClientInfo ci) {
     195                public void SetOnline (ClientInfo _ci) {
    196196                        Log.Out ("Player set to online: " + steamId);
    197                         clientInfo = ci;
    198             entityId = ci.entityId;
    199                         name = ci.playerName;
    200                         ip = ci.ip;
     197                        clientInfo = _ci;
     198            entityId = _ci.entityId;
     199                        name = _ci.playerName;
     200                        ip = _ci.ip;
    201201                        lastOnline = DateTime.Now;
    202202                }
Note: See TracChangeset for help on using the changeset viewer.