summaryrefslogtreecommitdiff
path: root/src/map/atcommand.c
diff options
context:
space:
mode:
authorHaru <haru@dotalux.com>2018-07-28 04:18:08 +0200
committerGitHub <noreply@github.com>2018-07-28 04:18:08 +0200
commit9338574e57ff670162898f359687d9ecaa6464d5 (patch)
tree299e52161564a1af01a8473c3a32492950759693 /src/map/atcommand.c
parentd4f03181409bf9f7a71d45a2e016a8ec4c3bcc9f (diff)
parent004ec930c6cbb64dfa2b4e6be4bbca72589e349d (diff)
downloadhercules-9338574e57ff670162898f359687d9ecaa6464d5.tar.gz
hercules-9338574e57ff670162898f359687d9ecaa6464d5.tar.bz2
hercules-9338574e57ff670162898f359687d9ecaa6464d5.tar.xz
hercules-9338574e57ff670162898f359687d9ecaa6464d5.zip
Merge pull request #2139 from 4144/updatepackets
update packets up to 2018-07-18 and fix/update old packets
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r--src/map/atcommand.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index 52bf64e87..bedb58478 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -9472,6 +9472,8 @@ ACMD(costume)
};
unsigned short k = 0, len = ARRAYLENGTH(names);
+ bool isChangeDress = (strcmpi(info->command, "changedress") == 0 || strcmpi(info->command, "nocosplay") == 0);
+
if (!*message) {
for (k = 0; k < len; k++) {
if (sd->sc.data[name2id[k]]) {
@@ -9482,6 +9484,8 @@ ACMD(costume)
}
}
+ if (isChangeDress)
+ return true;
clif->message(sd->fd, msg_fd(fd, 1472)); // - Available Costumes
for (k = 0; k < len; k++) {
@@ -9491,6 +9495,9 @@ ACMD(costume)
return false;
}
+ if (isChangeDress)
+ return true;
+
for (k = 0; k < len; k++) {
if (sd->sc.data[name2id[k]]) {
safesnprintf(atcmd_output, sizeof(atcmd_output), msg_fd(fd, 1470), names[k]); // You're already with a '%s' costume, type '@costume' to remove it.
@@ -10014,6 +10021,8 @@ static void atcommand_basecommands(void)
ACMD_DEF(fontcolor),
ACMD_DEF(searchstore),
ACMD_DEF(costume),
+ ACMD_DEF2("changedress", costume),
+ ACMD_DEF2("nocosplay", costume),
ACMD_DEF(skdebug),
ACMD_DEF(cddebug),
ACMD_DEF(lang),