diff options
author | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-28 19:21:40 +0000 |
---|---|---|
committer | ultramage <ultramage@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2007-07-28 19:21:40 +0000 |
commit | 58aa5f00185701b698eaf6e514d89276e41d20d7 (patch) | |
tree | 28c8f0b999bdf19ae0fdaf797c15eb89e7de8bae /src/map/atcommand.c | |
parent | 10cd9e4aebf9efa7f12a357499e63ef0479947cf (diff) | |
download | hercules-58aa5f00185701b698eaf6e514d89276e41d20d7.tar.gz hercules-58aa5f00185701b698eaf6e514d89276e41d20d7.tar.bz2 hercules-58aa5f00185701b698eaf6e514d89276e41d20d7.tar.xz hercules-58aa5f00185701b698eaf6e514d89276e41d20d7.zip |
* Removed ridiculous refine_posword config switch
* TODO: remove getequipname() func, it can be fully replaced by editing a few scripts, plus it doesn't do what the docs say it should do
* Fixed a silly mistake in the main script engine loop ('pos' variable)
* Fixed monter -> monster typos
* Compacted some script function code (fewer LoC -> faster trac :)
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@10923 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index 32541b9c4..717047709 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -4053,7 +4053,7 @@ int atcommand_makeegg(const int fd, struct map_session_data* sd, const char* com nullpo_retr(-1, sd); if (!message || !*message) { - clif_displaymessage(fd, "Please, enter a monter/egg name/id (usage: @makeegg <pet_id>)."); + clif_displaymessage(fd, "Please, enter a monster/egg name/id (usage: @makeegg <pet_id>)."); return -1; } @@ -4073,7 +4073,7 @@ int atcommand_makeegg(const int fd, struct map_session_data* sd, const char* com (short)pet_db[pet_id].EggID, 0, (short)pet_db[pet_id].intimate, 100, 0, 1, pet_db[pet_id].jname); } else { - clif_displaymessage(fd, msg_txt(180)); // The monter/egg name/id doesn't exist. + clif_displaymessage(fd, msg_txt(180)); // The monster/egg name/id doesn't exist. return -1; } |