diff options
author | Wushin <pasekei@gmail.com> | 2015-08-16 14:02:55 -0500 |
---|---|---|
committer | Wushin <pasekei@gmail.com> | 2015-08-16 14:02:55 -0500 |
commit | d6b51d91f755030881fa7e4316418f3ac30396a1 (patch) | |
tree | 316e09dd5f0c29cac127bfd1e2bc231b30d98f3c /src/map/tmw.cpp | |
parent | 22cec0e1a4eb7476028b7b230ac30bb83e5bea27 (diff) | |
parent | 0a3acd15fdddb2fbedf49fe6ea58740ca835206b (diff) | |
download | tmwa-d6b51d91f755030881fa7e4316418f3ac30396a1.tar.gz tmwa-d6b51d91f755030881fa7e4316418f3ac30396a1.tar.bz2 tmwa-d6b51d91f755030881fa7e4316418f3ac30396a1.tar.xz tmwa-d6b51d91f755030881fa7e4316418f3ac30396a1.zip |
Merge pull request #134 from wushin/broken-nick-fix
Fix Broken Nick M+ Issue
Diffstat (limited to 'src/map/tmw.cpp')
-rw-r--r-- | src/map/tmw.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/tmw.cpp b/src/map/tmw.cpp index df76720..5422b3a 100644 --- a/src/map/tmw.cpp +++ b/src/map/tmw.cpp @@ -109,8 +109,8 @@ int tmw_CheckChatSpam(dumb_ptr<map_session_data> sd, XString message) (sd->chat_lines_in >= battle_config.chat_spam_warn || sd->chat_total_repeats >= battle_config.chat_spam_warn)) { - clif_displaymessage(sd->sess, "##1WARNING : ##BYou are about to be automatically banned for spam!"_s); - clif_displaymessage(sd->sess, "##1WARNING : ##BPlease slow down, do not repeat, and do not SHOUT!"_s); + clif_displaymessage(sd->sess, "WARNING : ##1##BYou are about to be automatically banned for spam!"_s); + clif_displaymessage(sd->sess, "WARNING : ##1##BPlease slow down, do not repeat, and do not SHOUT!"_s); } return 0; |