diff options
author | Haru <haru@dotalux.com> | 2015-06-02 02:23:24 +0200 |
---|---|---|
committer | Haru <haru@dotalux.com> | 2015-06-02 02:23:24 +0200 |
commit | 60e499282e124cd8978a32bb84d4b394811f29dc (patch) | |
tree | 1b3211a6e39e1dacfe9bdfe80b0a798a48ddaecf /src | |
parent | d66cc50af6d781d179f46ae67d74bf26bf5914e5 (diff) | |
parent | 3b4362cd0148a0cabf37306eccf1abbff0edc360 (diff) | |
download | hercules-60e499282e124cd8978a32bb84d4b394811f29dc.tar.gz hercules-60e499282e124cd8978a32bb84d4b394811f29dc.tar.bz2 hercules-60e499282e124cd8978a32bb84d4b394811f29dc.tar.xz hercules-60e499282e124cd8978a32bb84d4b394811f29dc.zip |
Merge remote-tracking branch 'upstream/pr/530' into hercules
Diffstat (limited to 'src')
-rw-r--r-- | src/map/atcommand.c | 29 | ||||
-rw-r--r-- | src/map/pc.c | 6 |
2 files changed, 10 insertions, 25 deletions
diff --git a/src/map/atcommand.c b/src/map/atcommand.c index f42a6332d..0bd236fa7 100644 --- a/src/map/atcommand.c +++ b/src/map/atcommand.c @@ -8785,14 +8785,7 @@ ACMD(channel) { unsigned short msg_len = 1; msg_len += sprintf(mout, "[ %s list colors ] : %s", command, channel->config->colors_name[k]); - // FIXME: This is clif code. - WFIFOHEAD(fd,msg_len + 12); - WFIFOW(fd,0) = 0x2C1; - WFIFOW(fd,2) = msg_len + 12; - WFIFOL(fd,4) = 0; - WFIFOL(fd,8) = channel->config->colors[k]; - safestrncpy((char*)WFIFOP(fd,12), mout, msg_len); - WFIFOSET(fd, msg_len + 12); + clif->colormes( fd, (enum clif_colors)channel->config->colors[k], mout ); } } else { DBIterator *iter = db_iterator(channel->db); @@ -9177,14 +9170,8 @@ ACMD(fontcolor) { if( !message || !*message ) { for( k = 0; k < channel->config->colors_count; k++ ) { msg_len += sprintf(mout, "[ %s ] : %s", command, channel->config->colors_name[k]); - // FIXME: This is clif code. - WFIFOHEAD(fd,msg_len + 12); - WFIFOW(fd,0) = 0x2C1; - WFIFOW(fd,2) = msg_len + 12; - WFIFOL(fd,4) = 0; - WFIFOL(fd,8) = channel->config->colors[k]; - safestrncpy((char*)WFIFOP(fd,12), mout, msg_len); - WFIFOSET(fd, msg_len + 12); + + clif->colormes( fd, (enum clif_colors)channel->config->colors[k], mout ); } return false; } @@ -9207,14 +9194,8 @@ ACMD(fontcolor) { sd->fontcolor = k + 1; msg_len += sprintf(mout, "Color changed to '%s'", channel->config->colors_name[k]); - // FIXME: This is clif code. - WFIFOHEAD(fd,msg_len + 12); - WFIFOW(fd,0) = 0x2C1; - WFIFOW(fd,2) = msg_len + 12; - WFIFOL(fd,4) = 0; - WFIFOL(fd,8) = channel->config->colors[k]; - safestrncpy((char*)WFIFOP(fd,12), mout, msg_len); - WFIFOSET(fd, msg_len + 12); + clif->colormes( fd, (enum clif_colors)channel->config->colors[k], mout ); + return true; } ACMD(searchstore){ diff --git a/src/map/pc.c b/src/map/pc.c index d105edfda..81a0df1c9 100644 --- a/src/map/pc.c +++ b/src/map/pc.c @@ -181,8 +181,12 @@ int pc_spiritball_timer(int tid, int64 tick, int id, intptr_t data) { * @retval total number of spiritball **/ int pc_getmaxspiritball(struct map_session_data *sd, int min) { + int result; + nullpo_ret(sd); - int result = pc->checkskill(sd, MO_CALLSPIRITS); + + result = pc->checkskill(sd, MO_CALLSPIRITS); + if ( min && result < min ) result = min; else if ( sd->sc.data[SC_RAISINGDRAGON] ) |