Ignore:
Timestamp:
Jun 19, 2016, 1:52:31 PM (8 years ago)
Author:
alloc
Message:

Mod stuff

Location:
binary-improvements/7dtd-server-fixes
Files:
1 added
6 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements/7dtd-server-fixes/7dtd-server-fixes.csproj

    r273 r279  
    9393    <Compile Include="src\LandClaimList.cs" />
    9494    <Compile Include="src\PersistentData\Attributes.cs" />
     95    <Compile Include="src\JSON\JSONValue.cs" />
    9596  </ItemGroup>
    9697  <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  • binary-improvements/7dtd-server-fixes/src/JSON/JSONBoolean.cs

    r187 r279  
    33namespace AllocsFixes.JSON
    44{
    5         public class JSONBoolean : JSONNode
     5        public class JSONBoolean : JSONValue
    66        {
    77                private bool value;
  • binary-improvements/7dtd-server-fixes/src/JSON/JSONNull.cs

    r188 r279  
    33namespace AllocsFixes.JSON
    44{
    5         public class JSONNull : JSONNode
     5        public class JSONNull : JSONValue
    66        {
    77                public JSONNull ()
  • binary-improvements/7dtd-server-fixes/src/JSON/JSONNumber.cs

    r187 r279  
    44namespace AllocsFixes.JSON
    55{
    6         public class JSONNumber : JSONNode
     6        public class JSONNumber : JSONValue
    77        {
    88                private double value;
  • binary-improvements/7dtd-server-fixes/src/JSON/JSONString.cs

    r187 r279  
    44namespace AllocsFixes.JSON
    55{
    6         public class JSONString : JSONNode
     6        public class JSONString : JSONValue
    77        {
    88                private string value;
  • binary-improvements/7dtd-server-fixes/src/PersistentData/Player.cs

    r276 r279  
    2020                private int
    2121                        lastPositionX, lastPositionY, lastPositionZ;
    22                 [OptionalField]
     22                [OptionalField][Obsolete("experience no longer available, use level and expToNextLevel instead")]
    2323                private uint experience;
    2424                [OptionalField]
     
    118118
    119119
    120                 // Deprecated
     120                [Obsolete("Experience no longer available, use Level instead")]
    121121                public uint Experience {
    122122                        get {
Note: See TracChangeset for help on using the changeset viewer.