From dca477622e54f10689d47969153121734a411a2d Mon Sep 17 00:00:00 2001 From: skotlex Date: Fri, 4 Aug 2006 16:38:54 +0000 Subject: - Enabled Mastery damage on Soul Breaker again, moved adv katar mastery out of the mastery function so that it may apply to all skills except Soul Breaker. - Changed name of the setting log_pick to log_filter since that's what it does now. - Modified enable_logs so that instead of a 0/1 setting, you can specify which kind of events to log (so you can use a combination), see log_athena for the bitmask configuration. - Cleaned a bit the contents of log_athena.conf git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@8129 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/map/mob.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/map/mob.c') 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); } -- cgit v1.2.3-60-g2f50