diff options
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 |