summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortoms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-02 21:34:01 +0000
committertoms <toms@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-08-02 21:34:01 +0000
commit172581074787f73ba1b75618a792c76795868b34 (patch)
treea242e678efc06c90889b9bc22adfc780eca0d69e
parentac0261e807d352714ddf77be4351c037e0ed98a0 (diff)
downloadhercules-172581074787f73ba1b75618a792c76795868b34.tar.gz
hercules-172581074787f73ba1b75618a792c76795868b34.tar.bz2
hercules-172581074787f73ba1b75618a792c76795868b34.tar.xz
hercules-172581074787f73ba1b75618a792c76795868b34.zip
Fixed homunculus error message
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8073 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt1
-rw-r--r--conf-tmpl/msg_athena.conf3
-rw-r--r--src/map/atcommand.c2
3 files changed, 5 insertions, 1 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 63012b0c7..b8d83a13e 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -4,6 +4,7 @@ AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
2006/08/02
+ * Fixed homunculus error message [Toms]
* Rewrote pc_payzeny to not use doubles, it may more accurately prevent
charging a player more zeny than they can withhold. [Skotlex]
* Fixed failing to create Deadly Poison Bottles damaging 50% of your max
diff --git a/conf-tmpl/msg_athena.conf b/conf-tmpl/msg_athena.conf
index f5e65f98b..afc355f94 100644
--- a/conf-tmpl/msg_athena.conf
+++ b/conf-tmpl/msg_athena.conf
@@ -397,6 +397,9 @@
401: You have been jailed for %d years, %d months, %d days, %d hours and %d minutes
402: %s in jail for %d years, %d months, %d days, %d hours and %d minutes
+// Homunculus messages
+450: You already have an homunculus
+
// Messages of others (not for GM commands)
// ----------------------------------------
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 667b89ff1..640fcba90 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -9807,7 +9807,7 @@ atcommand_makehomun(
}
else
{
- clif_displaymessage(fd,msg_txt(144));
+ clif_displaymessage(fd,msg_txt(450));
}
return 0;
}