diff options
author | Lewis Brumby <lewis.brumby@hotmail.com> | 2020-03-31 21:49:18 +0100 |
---|---|---|
committer | Shauren <shauren.trinity@gmail.com> | 2021-12-31 19:05:27 +0100 |
commit | 756ec4e43c12efc209d2080838f53a961b94f7f1 (patch) | |
tree | b37b20ae83ca903b1d3573faa875c3aad9cfc997 /src | |
parent | 8e9b9fafbb075c4b5ba9a821145d8f1a1b0656a6 (diff) |
Update action_ip_logger.cpp (#24371)
(cherry picked from commit b48c50ba23fc9c12b8e9d6a7d0c5d65ffd4b9a59)
Diffstat (limited to 'src')
-rw-r--r-- | src/server/scripts/World/action_ip_logger.cpp | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/src/server/scripts/World/action_ip_logger.cpp b/src/server/scripts/World/action_ip_logger.cpp index a66e5044916..85c404e873d 100644 --- a/src/server/scripts/World/action_ip_logger.cpp +++ b/src/server/scripts/World/action_ip_logger.cpp @@ -102,22 +102,22 @@ class AccountActionIpLogger : public AccountScript switch (aType) { case ACCOUNT_LOGIN: - systemNote = "Logged on Successful AccountLogin"; + systemNote = "Logged into WoW"; break; case ACCOUNT_FAIL_LOGIN: - systemNote = "Logged on Failed AccountLogin"; + systemNote = "Login to WoW Failed"; break; case ACCOUNT_CHANGE_PW: - systemNote = "Logged on Successful Account Password Change"; + systemNote = "Password Reset Completed"; break; case ACCOUNT_CHANGE_PW_FAIL: - systemNote = "Logged on Failed Account Password Change"; + systemNote = "Password Reset Failed"; break; case ACCOUNT_CHANGE_EMAIL: - systemNote = "Logged on Successful Account Email Change"; + systemNote = "Email Change Completed"; break; case ACCOUNT_CHANGE_EMAIL_FAIL: - systemNote = "Logged on Failed Account Email Change"; + systemNote = "Email Change Failed"; break; /*case ACCOUNT_LOGOUT: systemNote = "Logged on AccountLogout"; //Can not be logged @@ -206,19 +206,19 @@ class CharacterActionIpLogger : public PlayerScript switch (aType) { case CHARACTER_CREATE: - systemNote = "Logged on CharacterCreate"; + systemNote = "Character Created"; break; case CHARACTER_LOGIN: - systemNote = "Logged on CharacterLogin"; + systemNote = "Logged onto Character"; break; case CHARACTER_LOGOUT: - systemNote = "Logged on CharacterLogout"; + systemNote = "Logged out of Character"; break; case CHARACTER_DELETE: - systemNote = "Logged on CharacterDelete"; + systemNote = "Character Deleted"; break; case CHARACTER_FAILED_DELETE: - systemNote = "Logged on Failed CharacterDelete"; + systemNote = "Character Deletion Failed"; break; // Neither should happen. Ever. Period. If it does, call Mythbusters. case UNKNOWN_ACTION: @@ -273,10 +273,10 @@ public: switch (aType) { case CHARACTER_DELETE: - systemNote = "Logged on CharacterDelete"; + systemNote = "Character Deleted"; break; case CHARACTER_FAILED_DELETE: - systemNote = "Logged on Failed CharacterDelete"; + systemNote = "Character Deletion Failed"; break; // Neither should happen. Ever. Period. If it does, call to whatever god you have for mercy and guidance. case UNKNOWN_ACTION: |