summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Changelog-Trunk.txt2
-rw-r--r--src/map/clif.c2
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;
}