summaryrefslogtreecommitdiff
path: root/src/map/clif.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/map/clif.c')
-rw-r--r--src/map/clif.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/map/clif.c b/src/map/clif.c
index 152a72cee..1e9844f14 100644
--- a/src/map/clif.c
+++ b/src/map/clif.c
@@ -21935,7 +21935,7 @@ static void clif_camera_showWindow(struct map_session_data *sd)
#endif
}
-static void clif_camera_change(struct map_session_data *sd, float range, float rotation, float latitude)
+static void clif_camera_change(struct map_session_data *sd, float range, float rotation, float latitude, enum send_target target)
{
#if PACKETVER >= 20160525
struct PACKET_ZC_CAMERA_INFO p;
@@ -21944,7 +21944,7 @@ static void clif_camera_change(struct map_session_data *sd, float range, float r
p.range = range;
p.rotation = rotation;
p.latitude = latitude;
- clif->send(&p, sizeof(p), &sd->bl, SELF);
+ clif->send(&p, sizeof(p), &sd->bl, target);
#endif
}