diff options
Diffstat (limited to 'src/map/mob.c')
-rw-r--r-- | src/map/mob.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/map/mob.c b/src/map/mob.c index 70b0b0f0c..bbdf65bfe 100644 --- a/src/map/mob.c +++ b/src/map/mob.c @@ -1265,7 +1265,7 @@ static int mob_ai_sub_hard(struct block_list *bl,va_list ap) fitem = (struct flooritem_data *)tbl; if (md->lootitem_count < LOOTITEM_SIZE) { memcpy (&md->lootitem[md->lootitem_count++], &fitem->item_data, sizeof(md->lootitem[0])); - if(log_config.pick > 0) //Logs items, taken by (L)ooter Mobs [Lupus] + if(log_config.enable_logs&0x10) //Logs items, taken by (L)ooter Mobs [Lupus] log_pick((struct map_session_data*)md, "L", md->class_, md->lootitem[md->lootitem_count-1].nameid, md->lootitem[md->lootitem_count-1].amount, &md->lootitem[md->lootitem_count-1]); } else { //Destroy first looted item... if (md->lootitem[0].card[0] == (short)0xff00) @@ -1470,7 +1470,7 @@ static int mob_delay_item_drop(int tid,unsigned int tick,int id,int data) */ static void mob_item_drop(struct mob_data *md, struct item_drop_list *dlist, struct item_drop *ditem, int loot, int drop_rate) { - if(log_config.pick > 0) + if(log_config.enable_logs&0x10) { //Logs items, dropped by mobs [Lupus] if (loot) log_pick((struct map_session_data*)md, "L", md->class_, ditem->item_data.nameid, -ditem->item_data.amount, &ditem->item_data); @@ -2102,7 +2102,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type) map_addflooritem(&item,1,mvp_sd->bl.m,mvp_sd->bl.x,mvp_sd->bl.y,mvp_sd,second_sd,third_sd,1); } - if(log_config.pick > 0) {//Logs items, MVP prizes [Lupus] + if(log_config.enable_logs&0x200) {//Logs items, MVP prizes [Lupus] log_pick((struct map_session_data*)md, "M", md->class_, item.nameid, -1, NULL); log_pick(mvp_sd, "P", 0, item.nameid, 1, NULL); } |