From cbe4b008af7c80ed1c9de9250d6b69592c78e5e8 Mon Sep 17 00:00:00 2001 From: ultramage Date: Wed, 27 Feb 2008 22:14:18 +0000 Subject: Added support for actually disabling the idle_no_autoloot config setting (followup to r12248) (bugreport:1061) git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@12254 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/mob.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'src/map/mob.c') diff --git a/src/map/mob.c b/src/map/mob.c index 2725f0b39..4974624e2 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -1617,7 +1617,11 @@ static void mob_item_drop(struct mob_data *md, struct item_drop_list *dlist, str sd = map_charid2sd(dlist->first_charid); if( sd == NULL ) sd = map_charid2sd(dlist->second_charid); if( sd == NULL ) sd = map_charid2sd(dlist->third_charid); - if( sd && (drop_rate <= sd->state.autoloot || ditem->item_data.nameid == sd->state.autolootid) && sd->idletime >= (last_tick - battle_config.idle_no_autoloot) && (battle_config.homunculus_autoloot?1:!flag) + + if( sd + && (drop_rate <= sd->state.autoloot || ditem->item_data.nameid == sd->state.autolootid) + && (battle_config.idle_no_autoloot == 0 || DIFF_TICK(last_tick, sd->idletime) < battle_config.idle_no_autoloot) + && (battle_config.homunculus_autoloot?1:!flag) #ifdef AUTOLOOT_DISTANCE && check_distance_blxy(&sd->bl, dlist->x, dlist->y, AUTOLOOT_DISTANCE) #endif -- cgit v1.2.3-70-g09d2