Ignore:
Timestamp:
Jul 18, 2016, 1:10:42 PM (8 years ago)
Author:
alloc
Message:

Updated core for Coppi's stuff

File:
1 edited

Legend:

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

    r279 r287  
    2727                private int maxChatLength;
    2828                [OptionalField]
     29                private string chatColor;
     30                [OptionalField]
     31                private bool chatName;
     32                [OptionalField]
    2933                private uint expToNextLevel;
    3034                [OptionalField]
     
    151155                        set {
    152156                                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;
    153180                        }
    154181                }
Note: See TracChangeset for help on using the changeset viewer.