- Timestamp:
- Jul 18, 2016, 1:10:42 PM (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements/7dtd-server-fixes/src/PersistentData/Player.cs
r279 r287 27 27 private int maxChatLength; 28 28 [OptionalField] 29 private string chatColor; 30 [OptionalField] 31 private bool chatName; 32 [OptionalField] 29 33 private uint expToNextLevel; 30 34 [OptionalField] … … 151 155 set { 152 156 maxChatLength = value; 157 } 158 } 159 160 public string ChatColor { 161 get { 162 if (chatColor == null || chatColor == "") { 163 chatColor = ""; 164 } 165 return chatColor; 166 } 167 168 set { 169 chatColor = value; 170 } 171 } 172 173 public bool ChatName { 174 get { 175 return chatName; 176 } 177 178 set { 179 chatName = value; 153 180 } 154 181 }
Note:
See TracChangeset
for help on using the changeset viewer.