Ignore:
Timestamp:
May 11, 2016, 8:54:19 PM (9 years ago)
Author:
alloc
Message:

fixes 8_10_13_1

File:
1 edited

Legend:

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

    r238 r273  
    1010        {
    1111                private Players players;
     12                [OptionalField]
     13                private Attributes attributes;
    1214
    1315                public Players Players {
     
    1618                                        players = new Players ();
    1719                                return players;
     20                        }
     21                }
     22
     23                public Attributes Attributes
     24                {
     25                        get {
     26                                if (attributes == null) {
     27                                        attributes = new Attributes();
     28                                }
     29                                return attributes;
    1830                        }
    1931                }
Note: See TracChangeset for help on using the changeset viewer.