diff options
author | Andrei Karas <akaras@inbox.ru> | 2013-03-09 21:10:01 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2013-03-09 21:10:01 +0300 |
commit | b4121ca0c5b2a74e02cce69c32316287ffc63034 (patch) | |
tree | 38837017fd2cef634a5c4b16778239d1f9345407 /src/notifications.h | |
parent | d528e72adef79304c0b3cc55af838070a0af8ee1 (diff) | |
download | plus-b4121ca0c5b2a74e02cce69c32316287ffc63034.tar.gz plus-b4121ca0c5b2a74e02cce69c32316287ffc63034.tar.bz2 plus-b4121ca0c5b2a74e02cce69c32316287ffc63034.tar.xz plus-b4121ca0c5b2a74e02cce69c32316287ffc63034.zip |
Improve map class.
Diffstat (limited to 'src/notifications.h')
-rw-r--r-- | src/notifications.h | 17 |
1 files changed, 14 insertions, 3 deletions
diff --git a/src/notifications.h b/src/notifications.h index f1df9f020..91d40d10b 100644 --- a/src/notifications.h +++ b/src/notifications.h @@ -27,13 +27,14 @@ namespace NotifyManager { enum NotifyFlags { - EMPTY, + EMPTY = 0, INT, STRING, GUILD, GUILD_STRING, PARTY, - PARTY_STRING + PARTY_STRING, + SPEECH }; struct NotificationInfo @@ -44,7 +45,7 @@ namespace NotifyManager enum NotifyTypes { - NONE, + NONE = 0, BUY_DONE, BUY_FAILED, SELL_LIST_EMPTY, @@ -109,6 +110,11 @@ namespace NotifyManager WHISPERS_UNIGNORED, WHISPERS_UNIGNORE_FAILED, SKILL_FAIL_MESSAGE, + PVP_OFF_GVG_OFF, + PVP_ON, + GVG_ON, + PVP_ON_GVG_ON, + PVP_UNKNOWN, TYPE_END }; @@ -181,6 +187,11 @@ namespace NotifyManager {N_("All whispers unignored."), EMPTY}, {N_("All whispers unignore failed."), EMPTY}, {N_("%s"), STRING}, + {N_("pvp off, gvg off"), SPEECH}, + {N_("pvp on"), SPEECH}, + {N_("gvg on"), SPEECH}, + {N_("pvp on, gvg on"), SPEECH}, + {N_("unknown pvp"), SPEECH}, }; } #endif |