diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-28 04:02:39 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-08-28 04:02:39 +0000 |
commit | 5f3bea3ba98249acae12a9b14981b1fcdbcc9890 (patch) | |
tree | 901de4d70b76cddb114f63ff88d32e96928d077e /src | |
parent | cb8e7fecea483281556158a966f95997b5e73c38 (diff) | |
download | hercules-5f3bea3ba98249acae12a9b14981b1fcdbcc9890.tar.gz hercules-5f3bea3ba98249acae12a9b14981b1fcdbcc9890.tar.bz2 hercules-5f3bea3ba98249acae12a9b14981b1fcdbcc9890.tar.xz hercules-5f3bea3ba98249acae12a9b14981b1fcdbcc9890.zip |
Replaced the engrish ksprotection message with one provided by Itakou.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13147 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src')
-rw-r--r-- | src/map/mob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 43ba8afb3..755063da8 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -347,7 +347,7 @@ bool mob_ksprotected (struct block_list *src, struct block_list *target) // Message to Owner if( DIFF_TICK(pl_sd->ks_floodprotect_tick, tick) <= 0 ) { - sprintf(output, "[Warning!! - %s is KS you]", sd->status.name); + sprintf(output, "[Watch out! %s is trying to KS you!]", sd->status.name); clif_disp_onlyself(pl_sd, output, strlen(output)); pl_sd->ks_floodprotect_tick = tick + 2000; |