summaryrefslogtreecommitdiff
path: root/src/map/mob.c
diff options
context:
space:
mode:
authorshennetsind <ind@henn.et>2014-02-22 23:02:01 -0300
committershennetsind <ind@henn.et>2014-02-22 23:02:01 -0300
commitb52c3cc52f391e75a6277e7bf4afc992c4759e9d (patch)
tree5b48c0b4111b35b9467faa0c583e0eb68b014279 /src/map/mob.c
parent6163d9afd1b8536509cb79d123ad6855d89f39e7 (diff)
parent4109f855604a1782a04c2eba10229fb2e1efd2ab (diff)
downloadhercules-b52c3cc52f391e75a6277e7bf4afc992c4759e9d.tar.gz
hercules-b52c3cc52f391e75a6277e7bf4afc992c4759e9d.tar.bz2
hercules-b52c3cc52f391e75a6277e7bf4afc992c4759e9d.tar.xz
hercules-b52c3cc52f391e75a6277e7bf4afc992c4759e9d.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 b1fb99859..ff63048d1 100644
--- a/src/map/mob.c
+++ b/src/map/mob.c
@@ -398,7 +398,7 @@ bool mob_ksprotected(struct block_list *src, struct block_list *target) {
if( DIFF_TICK(sd->ks_floodprotect_tick, tick) <= 0 )
{
sprintf(output, "[KS Warning!! - Owner : %s]", pl_sd->status.name);
- clif->disp_onlyself(sd, output, strlen(output));
+ clif_disp_onlyself(sd, output, strlen(output));
sd->ks_floodprotect_tick = tick + 2000;
}
@@ -407,7 +407,7 @@ bool mob_ksprotected(struct block_list *src, struct block_list *target) {
if( DIFF_TICK(pl_sd->ks_floodprotect_tick, tick) <= 0 )
{
sprintf(output, "[Watch out! %s is trying to KS you!]", sd->status.name);
- clif->disp_onlyself(pl_sd, output, strlen(output));
+ clif_disp_onlyself(pl_sd, output, strlen(output));
pl_sd->ks_floodprotect_tick = tick + 2000;
}