diff options
Diffstat (limited to 'src/enums/gui')
-rw-r--r-- | src/enums/gui/chatmsgtype.h | 6 | ||||
-rw-r--r-- | src/enums/gui/usercolorid.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/src/enums/gui/chatmsgtype.h b/src/enums/gui/chatmsgtype.h index 979e07ca1..194d3f80e 100644 --- a/src/enums/gui/chatmsgtype.h +++ b/src/enums/gui/chatmsgtype.h @@ -27,15 +27,15 @@ enumStart(ChatMsgType) { - BY_GM = 0, + BY_UNKNOWN = -1, + BY_GM, BY_PLAYER, BY_OTHER, BY_SERVER, BY_CHANNEL, ACT_WHISPER, // getting whispered at ACT_IS, // equivalent to "/me" on IRC - BY_LOGGER, - BY_UNKNOWN = -1 + BY_LOGGER } enumEnd(ChatMsgType); diff --git a/src/enums/gui/usercolorid.h b/src/enums/gui/usercolorid.h index 336a1f43b..fa36a78b1 100644 --- a/src/enums/gui/usercolorid.h +++ b/src/enums/gui/usercolorid.h @@ -29,7 +29,7 @@ enumStart(UserColorId) { NO_COLOR = -1, - LABEL_BEING = 0, + LABEL_BEING, BEING, FRIEND, DISREGARDED, |