Skip to content

Commit 5c0cdbb

Browse files
committed
Fix direct calls to clif_send in clif.c
Signed-off-by: Ibrahim Zidan <[email protected]>
1 parent 5410de9 commit 5c0cdbb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/map/clif.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7125,7 +7125,7 @@ static void clif_party_job_and_level(struct map_session_data *sd)
71257125
WBUFW(buf, 6) = sd->status.class;
71267126
WBUFW(buf, 8) = sd->status.base_level;
71277127

7128-
clif_send(buf, packet_len(0xabd), &sd->bl, PARTY);
7128+
clif->send(buf, packet_len(0xabd), &sd->bl, PARTY);
71297129
#endif
71307130
}
71317131

@@ -21630,7 +21630,7 @@ static void clif_hat_effect_single(struct block_list *bl, uint16 effectId, bool
2163021630
WBUFB(buf,8) = enable;
2163121631
WBUFL(buf,9) = effectId;
2163221632

21633-
clif_send(buf, 13, bl, AREA);
21633+
clif->send(buf, 13, bl, AREA);
2163421634
#endif
2163521635
}
2163621636

0 commit comments

Comments
 (0)