diff options
author | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-15 02:55:50 +0000 |
---|---|---|
committer | skotlex <skotlex@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2006-03-15 02:55:50 +0000 |
commit | 3aa689e30efaac30f0899b44f82dc755e44ac6d7 (patch) | |
tree | 5c4edbde709aa708f624c2cae68a6153f6766539 /src/map/status.c | |
parent | cffd40f5ba4897e1099ba843dac80363f4a20aca (diff) | |
download | hercules-3aa689e30efaac30f0899b44f82dc755e44ac6d7.tar.gz hercules-3aa689e30efaac30f0899b44f82dc755e44ac6d7.tar.bz2 hercules-3aa689e30efaac30f0899b44f82dc755e44ac6d7.tar.xz hercules-3aa689e30efaac30f0899b44f82dc755e44ac6d7.zip |
- Fixed a possible crash in Venom Splasher if the countdown is too high.
- Small cleanup in clif.c hoping that it'll fix a mysterious crash.
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5606 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/status.c')
-rw-r--r-- | src/map/status.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c index 548be4d1f..48d762900 100644 --- a/src/map/status.c +++ b/src/map/status.c @@ -5503,8 +5503,8 @@ int status_change_timer(int tid, unsigned int tick, int id, int data) case SC_SPLASHER:
if (sc->data[type].val4 % 1000 == 0) {
- char timer[2];
- sprintf (timer, "%d", sc->data[type].val4/1000);
+ char timer[10];
+ snprintf (timer, 10, "%d", sc->data[type].val4/1000);
clif_message(bl, timer);
}
if((sc->data[type].val4 -= 500) > 0) {
|