summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile2
-rw-r--r--src/map/script.c8
-rw-r--r--src/map/status.c15
3 files changed, 19 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index 75ddf6689..2135a0f67 100644
--- a/Makefile
+++ b/Makefile
@@ -111,8 +111,6 @@ endif
.PHONY: txt sql common login login_sql char char_sql map map_sql ladmin converters \
addons plugins tools webserver clean zlib depend
-all: txt
-
txt : Makefile.cache conf common login char map ladmin
ifdef SQLFLAG
diff --git a/src/map/script.c b/src/map/script.c
index dca64002c..3edcbaf92 100644
--- a/src/map/script.c
+++ b/src/map/script.c
@@ -7204,6 +7204,14 @@ int buildin_getnpctimer(struct script_state *st)
nd=npc_name2id(conv_str(st,& (st->stack->stack_data[st->start+3])));
else
nd=(struct npc_data *)map_id2bl(st->oid);
+
+ if (!nd || nd->bl.type != BL_NPC)
+ {
+ push_val(st->stack,C_INT,0);
+ if (battle_config.error_log)
+ ShowError("getnpctimer: Invalid NPC\n");
+ return 1;
+ }
switch(type){
case 0: val=npc_gettimerevent_tick(nd); break;
diff --git a/src/map/status.c b/src/map/status.c
index aee10e721..dab6861ea 100644
--- a/src/map/status.c
+++ b/src/map/status.c
@@ -4931,18 +4931,25 @@ int status_change_start(struct block_list *bl,int type,int rate,int val1,int val
case SC_STRIPWEAPON:
if (sd) {
int i;
+ opt_flag = 0; //Reuse to check success condition.
if(sd->unstripable_equip&EQP_WEAPON)
return 0;
i = sd->equip_index[EQI_HAND_L];
if (i>=0 && sd->inventory_data[i] &&
sd->inventory_data[i]->type == IT_WEAPON)
+ {
+ opt_flag|=1;
pc_unequipitem(sd,i,3); //L-hand weapon
+ }
i = sd->equip_index[EQI_HAND_R];
- if (i<0 || !sd->inventory_data[i] ||
- sd->inventory_data[i]->type != IT_WEAPON)
- return 0;
- pc_unequipitem(sd,i,3);
+ if (i>=0 && sd->inventory_data[i] &&
+ sd->inventory_data[i]->type == IT_WEAPON)
+ {
+ opt_flag|=2;
+ pc_unequipitem(sd,i,3);
+ }
+ if (!opt_flag) return 0;
} else //Watk reduction
val2 = 5*val1;
break;