From 6d5919b4f782adc453106312c394cf1b7dd9e58f Mon Sep 17 00:00:00 2001 From: mekolat Date: Fri, 13 May 2016 14:34:56 -0400 Subject: implement SMSG_MAP_SET_TILES_TYPE, add builtin sendcollision --- src/map/clif.cpp | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'src/map/clif.cpp') diff --git a/src/map/clif.cpp b/src/map/clif.cpp index bd7f4ef..0ae8fbe 100644 --- a/src/map/clif.cpp +++ b/src/map/clif.cpp @@ -3921,6 +3921,24 @@ void clif_remote_command(dumb_ptr sd, XString cmd) clif_send(buf, sd, SendWho::SELF, wrap(6)); } +void clif_update_collision(dumb_ptr sd, short x1, short y1, + short x2, short y2, MapName map_name, int mask) +{ + nullpo_retv(sd); + + Packet_Fixed<0x0231> fixed_231; + fixed_231.x1 = x1; + fixed_231.y1 = y1; + fixed_231.x2 = x2; + fixed_231.y2 = y2; + fixed_231.mask = mask; + fixed_231.unused_layer = 0; + fixed_231.map = map_name; + Buffer buf = create_fpacket<0x0231, 34>(fixed_231); + + clif_send(buf, sd, SendWho::SELF, wrap(7)); +} + void clif_change_music(dumb_ptr sd, XString music) { nullpo_retv(sd); -- cgit v1.2.3-70-g09d2