Changeset 279 for binary-improvements/7dtd-server-fixes
- Timestamp:
- Jun 19, 2016, 1:52:31 PM (8 years ago)
- 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 93 93 <Compile Include="src\LandClaimList.cs" /> 94 94 <Compile Include="src\PersistentData\Attributes.cs" /> 95 <Compile Include="src\JSON\JSONValue.cs" /> 95 96 </ItemGroup> 96 97 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> -
binary-improvements/7dtd-server-fixes/src/JSON/JSONBoolean.cs
r187 r279 3 3 namespace AllocsFixes.JSON 4 4 { 5 public class JSONBoolean : JSON Node5 public class JSONBoolean : JSONValue 6 6 { 7 7 private bool value; -
binary-improvements/7dtd-server-fixes/src/JSON/JSONNull.cs
r188 r279 3 3 namespace AllocsFixes.JSON 4 4 { 5 public class JSONNull : JSON Node5 public class JSONNull : JSONValue 6 6 { 7 7 public JSONNull () -
binary-improvements/7dtd-server-fixes/src/JSON/JSONNumber.cs
r187 r279 4 4 namespace AllocsFixes.JSON 5 5 { 6 public class JSONNumber : JSON Node6 public class JSONNumber : JSONValue 7 7 { 8 8 private double value; -
binary-improvements/7dtd-server-fixes/src/JSON/JSONString.cs
r187 r279 4 4 namespace AllocsFixes.JSON 5 5 { 6 public class JSONString : JSON Node6 public class JSONString : JSONValue 7 7 { 8 8 private string value; -
binary-improvements/7dtd-server-fixes/src/PersistentData/Player.cs
r276 r279 20 20 private int 21 21 lastPositionX, lastPositionY, lastPositionZ; 22 [OptionalField] 22 [OptionalField][Obsolete("experience no longer available, use level and expToNextLevel instead")] 23 23 private uint experience; 24 24 [OptionalField] … … 118 118 119 119 120 // Deprecated120 [Obsolete("Experience no longer available, use Level instead")] 121 121 public uint Experience { 122 122 get {
Note:
See TracChangeset
for help on using the changeset viewer.