Ignore:
Timestamp:
Aug 30, 2014, 3:47:59 PM (10 years ago)
Author:
alloc
Message:

Fixes

File:
1 edited

Legend:

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

    r142 r143  
    44namespace AllocsFixes.PersistentData
    55{
    6         [Serializable()]
    7         public class KnownPlayers : ISerializable
     6        [Serializable]
     7        public class KnownPlayers
    88        {
    99                private int entityId;
     
    1616                public KnownPlayers (SerializationInfo info, StreamingContext ctxt)
    1717                {
    18                         this.entityId = info.GetInt32("entityId");
    19                         this.name = info.GetString("name");
     18                        this.entityId = info.GetInt32 ("entityId");
     19                        this.name = info.GetString ("name");
    2020                }
    21 
    22                 public void GetObjectData (SerializationInfo info, StreamingContext context)
    23                 {
    24                         info.AddValue("name", this.name);
    25                 }
    26 }
     21        }
    2722}
    2823
Note: See TracChangeset for help on using the changeset viewer.