summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-02-06 18:47:30 +0000
committerFlavioJS <FlavioJS@54d463be-8e91-2dee-dedb-b68131a5f0ec>2009-02-06 18:47:30 +0000
commit4459a6244d44f3be68b01164ae52e3a2f212475e (patch)
tree763fbe0df7fd5b44ca681717fab719040605bbdb
parentb8cec4ee2c23ca6984f31f21dfa3aa6632e564a0 (diff)
downloadhercules-4459a6244d44f3be68b01164ae52e3a2f212475e.tar.gz
hercules-4459a6244d44f3be68b01164ae52e3a2f212475e.tar.bz2
hercules-4459a6244d44f3be68b01164ae52e3a2f212475e.tar.xz
hercules-4459a6244d44f3be68b01164ae52e3a2f212475e.zip
* Follow up to r13485. (bugreport:2741)
- @spiritball creates spiritballs without timer (limited to the array size instead of 500) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@13509 54d463be-8e91-2dee-dedb-b68131a5f0ec
-rw-r--r--Changelog-Trunk.txt3
-rw-r--r--src/map/atcommand.c15
-rw-r--r--src/map/pc.c4
3 files changed, 13 insertions, 9 deletions
diff --git a/Changelog-Trunk.txt b/Changelog-Trunk.txt
index 81c7fd34e..183a368ee 100644
--- a/Changelog-Trunk.txt
+++ b/Changelog-Trunk.txt
@@ -3,6 +3,9 @@ Date Added
AS OF SVN REV. 5091, WE ARE NOW USING TRUNK. ALL UNTESTED BUGFIXES/FEATURES GO INTO TRUNK.
IF YOU HAVE A WORKING AND TESTED BUGFIX PUT IT INTO STABLE AS WELL AS TRUNK.
+2009/02/06
+ * Follow up to r13485. (bugreport:2741) [FlavioJS]
+ - @spiritball creates spiritballs without timer (limited to the array size instead of 500)
2009/01/25
* Changes to the configure script: [FlavioJS]
- added option --enable-profiler (supports gprof)
diff --git a/src/map/atcommand.c b/src/map/atcommand.c
index a4641b882..e5cd1c9e5 100644
--- a/src/map/atcommand.c
+++ b/src/map/atcommand.c
@@ -3713,20 +3713,19 @@ int atcommand_lostskill(const int fd, struct map_session_data* sd, const char* c
*------------------------------------------*/
int atcommand_spiritball(const int fd, struct map_session_data* sd, const char* command, const char* message)
{
+ int max_spiritballs = min(ARRAYLENGTH(sd->spirit_timer), 0x7FFF);
int number;
nullpo_retr(-1, sd);
- if (!message || !*message || (number = atoi(message)) < 0) {
- clif_displaymessage(fd, "Please, enter a spirit ball number (usage: @spiritball <number: 0-1000>).");
+ if (!message || !*message || (number = atoi(message)) < 0 || number >= max_spiritballs) {
+ char msg[256];
+ safesnprintf(msg, sizeof(msg), "Please, enter a spirit ball number (usage: @spiritball <number: 0-%d>).", max_spiritballs);
+ clif_displaymessage(fd, msg);
return -1;
}
- // set max number to avoid server/client crash (500 create big balls of several balls: no visial difference with more)
- if (number > 500)
- number = 500;
-
- if (number >= 0 && number <= 0x7FFF) {
- if (sd->spiritball != number || number > 499) {
+ if (number >= 0 && number <= max_spiritballs) {
+ if (sd->spiritball != number) {
if (sd->spiritball > 0)
pc_delspiritball(sd, sd->spiritball, 1);
sd->spiritball = number;
diff --git a/src/map/pc.c b/src/map/pc.c
index 89e9f1282..a5ce1d6b5 100644
--- a/src/map/pc.c
+++ b/src/map/pc.c
@@ -178,7 +178,7 @@ int pc_addspiritball(struct map_session_data *sd,int interval,int max)
}
tid = add_timer(gettick()+interval, pc_spiritball_timer, sd->bl.id, 0);
- ARR_FIND(0, sd->spiritball, i, DIFF_TICK(get_timer(tid)->tick, get_timer(sd->spirit_timer[i])->tick) < 0);
+ ARR_FIND(0, sd->spiritball, i, sd->spirit_timer[i] == INVALID_TIMER || DIFF_TICK(get_timer(tid)->tick, get_timer(sd->spirit_timer[i])->tick) < 0);
if( i != sd->spiritball )
memmove(sd->spirit_timer+i+1, sd->spirit_timer+i, (sd->spiritball-i)*sizeof(int));
sd->spirit_timer[i] = tid;
@@ -199,6 +199,8 @@ int pc_delspiritball(struct map_session_data *sd,int count,int type)
return 0;
}
+ if(count <= 0)
+ return 0;
if(count > sd->spiritball)
count = sd->spiritball;
sd->spiritball -= count;