summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2013-09-14 03:42:34 -0300
committershennetsind <ind@henn.et>2013-09-14 03:42:34 -0300
commitf1a594db1b40a5a20ec5a4af093b27c58266cba0 (patch)
treeb1e8beb0ecca04654d21e1eadda61de4cecd1227 /src/map/mob.c
parent0fd46a8156bfd9b66c2237f61e43c492c418181c (diff)
parenteb10f355f7e228b59011326a7f84da2e593affea (diff)
downloadhercules-f1a594db1b40a5a20ec5a4af093b27c58266cba0.tar.gz
hercules-f1a594db1b40a5a20ec5a4af093b27c58266cba0.tar.bz2
hercules-f1a594db1b40a5a20ec5a4af093b27c58266cba0.tar.xz
hercules-f1a594db1b40a5a20ec5a4af093b27c58266cba0.zip
Merge branch 'master' of https://github.com/HerculesWS/Hercules
Diffstat (limited to 'src/map/mob.c')
-rw-r--r--src/map/mob.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/mob.c b/src/map/mob.c
index 291f04267..b16c57ef8 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -2393,7 +2393,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type)
char message[128];
sprintf (message, msg_txt(541), mvp_sd->status.name, md->name, it->jname, (float)drop_rate/100);
//MSG: "'%s' won %s's %s (chance: %0.02f%%)"
- intif->broadcast(message,strlen(message)+1,0);
+ intif->broadcast(message, strlen(message)+1, BC_DEFAULT);
}
// Announce first, or else ditem will be freed. [Lance]
// By popular demand, use base drop rate for autoloot code. [Skotlex]
@@ -2534,7 +2534,7 @@ int mob_dead(struct mob_data *md, struct block_list *src, int type)
char message[128];
sprintf (message, msg_txt(541), mvp_sd->status.name, md->name, data->jname, temp/100.);
//MSG: "'%s' won %s's %s (chance: %0.02f%%)"
- intif->broadcast(message,strlen(message)+1,0);
+ intif->broadcast(message, strlen(message)+1, BC_DEFAULT);
}
if((temp = pc->additem(mvp_sd,&item,1,LOG_TYPE_PICKDROP_PLAYER)) != 0) {