diff options
author | akrus <akrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-07 07:25:09 +0000 |
---|---|---|
committer | akrus <akrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-07-07 07:25:09 +0000 |
commit | 7e5511badf86585b3d7cae3695705e1c38f98dc8 (patch) | |
tree | 6fa8d5f80d507973db0b95a1cb8317b6388a385b | |
parent | 15b04fb5907300b92a079533675c67b4ffdcae17 (diff) | |
download | hercules-7e5511badf86585b3d7cae3695705e1c38f98dc8.tar.gz hercules-7e5511badf86585b3d7cae3695705e1c38f98dc8.tar.bz2 hercules-7e5511badf86585b3d7cae3695705e1c38f98dc8.tar.xz hercules-7e5511badf86585b3d7cae3695705e1c38f98dc8.zip |
Fixed a typo :o
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12921 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r-- | Changelog-Trunk.txt | 2 | ||||
-rw-r--r-- | src/map/clif.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt index 56c4e8e41..ef057e35f 100644 --- a/Changelog-Trunk.txt +++ b/Changelog-Trunk.txt @@ -5,7 +5,7 @@ IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK. 2008/07/07 * Removed stop/slowdown effect from Grimtooth (bugreport:1806) - * Players autotrading will not be able to recieve whispers (bugreport:1804) [SketchyPhoenix] + * Players autotrading will not be able to receive whispers (bugreport:1804) [SketchyPhoenix] 2008/07/06 * Slight cleanup of item-based walk speed bonuses [ultramage] - removed bSpeed bonus code (was just disabled until now) diff --git a/src/map/clif.c b/src/map/clif.c index 198a60dca..0b2aa773e 100644 --- a/src/map/clif.c +++ b/src/map/clif.c @@ -8621,7 +8621,7 @@ void clif_parse_WisMessage(int fd, struct map_session_data* sd) if( dstsd->state.autotrade == 1 ) { char output[256]; - sprintf(output, "%s is in autotrade mode and cannot recieve whispered messages.", dstsd->status.name); + sprintf(output, "%s is in autotrade mode and cannot receive whispered messages.", dstsd->status.name); clif_wis_message(fd, sd->status.name, output, strlen(output) + 1); return; } |