diff options
author | (no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-02-13 19:53:10 +0000 |
---|---|---|
committer | (no author) <(no author)@54d463be-8e91-2dee-dedb-b68131a5f0ec> | 2005-02-13 19:53:10 +0000 |
commit | 61980833a1b7ffe229712f782f14425ab4fef90e (patch) | |
tree | 20eb8796273fc7c6c8794fb4d6caee8d552314b6 /src/map/mob.c | |
parent | 40fc56ca294bbc0ec69831f2f41201616e838405 (diff) | |
download | hercules-61980833a1b7ffe229712f782f14425ab4fef90e.tar.gz hercules-61980833a1b7ffe229712f782f14425ab4fef90e.tar.bz2 hercules-61980833a1b7ffe229712f782f14425ab4fef90e.tar.xz hercules-61980833a1b7ffe229712f782f14425ab4fef90e.zip |
autoloot, poison spore and more on the unknown skill [Shinomori]
git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/branches/stable@1105 54d463be-8e91-2dee-dedb-b68131a5f0ec
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 3c70998bf..f0a3edd63 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -2049,7 +2049,7 @@ static int mob_delay_item_drop2(int tid,unsigned int tick,int id,int data) } } else #endif - if(battle_config.item_auto_get){ + if(battle_config.item_auto_get || ditem->first_sd->autoloot){//Autoloot added by Upa-Kun drop_flag = 0; if((flag = pc_additem(ditem->first_sd,&ditem->item_data,ditem->item_data.amount))){ clif_additem(ditem->first_sd,0,0,flag); |