summaryrefslogtreecommitdiff
path: root/src/map/status.c
diff options
context:
space:
mode:
authormalufett <malufett.eat.my.binaries@gmail.com>2013-06-18 04:39:41 -0700
committermalufett <malufett.eat.my.binaries@gmail.com>2013-06-18 04:39:41 -0700
commited15563c944aae732494d9a243a0591d06e04ec1 (patch)
tree1278a4c5e7f923fb0c0be1efe51e739b1b677010 /src/map/status.c
parent2410110dece79b4598c12f1c953219f1d0d1904a (diff)
downloadhercules-ed15563c944aae732494d9a243a0591d06e04ec1.tar.gz
hercules-ed15563c944aae732494d9a243a0591d06e04ec1.tar.bz2
hercules-ed15563c944aae732494d9a243a0591d06e04ec1.tar.xz
hercules-ed15563c944aae732494d9a243a0591d06e04ec1.zip
Fixed Bug#7396
-map crash in using GN_BLOOD_SUCKER.
Diffstat (limited to 'src/map/status.c')
-rw-r--r--src/map/status.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/status.c b/src/map/status.c
index 992cc0855..55b79fff7 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -8329,10 +8329,10 @@ int status_change_start(struct block_list* bl,enum sc_type type,int rate,int val
break;
case SC_BLOOD_SUCKER:
{
- struct block_list *src = iMap->id2bl(sce->val2);
+ struct block_list *src = iMap->id2bl(val2);
val3 = 1;
if(src)
- val3 = 200 + 100 * sce->val1 + status_get_int(src);
+ val3 = 200 + 100 * val1 + status_get_int(src);
val4 = tick / 1000;
tick_time = 1000; // [GodLesZ] tick time
}