summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorLuzZza <LuzZza@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-21 18:37:35 +0000
committerLuzZza <LuzZza@54d463be-8e91-2dee-dedb-b68131a5f0ec>2006-02-21 18:37:35 +0000
commit0988a4623402706dced4808b565702135d7e963f (patch)
treeddb256d4a586e081b317538095ed7308695ee389 /src/map/atcommand.c
parenta102b2dffb9365116701f99c0dcc486a74cbc073 (diff)
downloadhercules-0988a4623402706dced4808b565702135d7e963f.tar.gz
hercules-0988a4623402706dced4808b565702135d7e963f.tar.bz2
hercules-0988a4623402706dced4808b565702135d7e963f.tar.xz
hercules-0988a4623402706dced4808b565702135d7e963f.zip
- Fix to prevent using main chat when it disabled in atcommand_athena.
- Fixed message codes in duel functions. - Small fix in log_refine, incorrect compare expression. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5358 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index a3e22a90a..eb849fb1c 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -9897,13 +9897,13 @@ int atcommand_reject(
{
if(sd->duel_invite <= 0) {
// "Duel: @reject without invititation."
- clif_displaymessage(fd, msg_txt(352));
+ clif_displaymessage(fd, msg_txt(362));
return 0;
}
duel_reject(sd->duel_invite, sd);
// "Duel: Invitation has been rejected."
- clif_displaymessage(fd, msg_txt(352));
+ clif_displaymessage(fd, msg_txt(363));
return 0;
}