diff options
author | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-03 22:03:38 +0000 |
---|---|---|
committer | zephyrus <zephyrus@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2008-03-03 22:03:38 +0000 |
commit | 0a869055ea95e069331b98b678221850b5cff54d (patch) | |
tree | 7abe1cd44b59e302da2791c260141c8c1404c600 /src/map/atcommand.c | |
parent | 843e3e8f415864313f268cf1272b7d1c9c620035 (diff) | |
download | hercules-0a869055ea95e069331b98b678221850b5cff54d.tar.gz hercules-0a869055ea95e069331b98b678221850b5cff54d.tar.bz2 hercules-0a869055ea95e069331b98b678221850b5cff54d.tar.xz hercules-0a869055ea95e069331b98b678221850b5cff54d.zip |
- Merged mail system to Stable. Need a second check... please wait.
- No packet added until everything is done.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12287 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/atcommand.c')
-rw-r--r-- | src/map/atcommand.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index f0c91da5c..7b1e4c483 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -6069,7 +6069,7 @@ int atcommand_autoloot(const int fd, struct map_session_data* sd, const char* co clif_displaymessage(fd, "Autolootitem is now off."); } - return 0; + return 0; } /*========================================== * @autolootitem @@ -7600,7 +7600,7 @@ static int atcommand_mutearea_sub(struct block_list *bl,va_list ap) return 0; id = va_arg(ap, int); - time = va_arg(ap, int); + time = va_arg(ap, int); if (id != bl->id && !pc_isGM(pl_sd)) { pl_sd->status.manner -= time; @@ -7655,7 +7655,7 @@ int atcommand_me(const int fd, struct map_session_data* sd, const char* command, char tempmes[200]; nullpo_retr(-1, sd); - memset(tempmes, '\0', sizeof(tempmes)); + memset(tempmes, '\0', sizeof(tempmes)); memset(atcmd_output, '\0', sizeof(atcmd_output)); if (sd->sc.count && //no "chatting" while muted. @@ -7705,7 +7705,7 @@ int atcommand_size(const int fd, struct map_session_data* sd, const char* comman /*========================================== * @monsterignore * => Makes monsters ignore you. [Valaris] - *------------------------------------------*/ + *------------------------------------------*/ int atcommand_monsterignore(const int fd, struct map_session_data* sd, const char* command, const char* message) { nullpo_retr(-1, sd); @@ -8062,7 +8062,7 @@ int atcommand_clone(const int fd, struct map_session_data* sd, const char* comma x = sd->bl.x; y = sd->bl.y; } - + if((x = mob_clone_spawn(pl_sd, sd->bl.m, x, y, "", master, 0, flag?1:0, 0)) > 0) { clif_displaymessage(fd, msg_txt(128+flag*2)); // Evil Clone spawned. Clone spawned. Slave clone spawned. return 0; |