summaryrefslogtreecommitdiff
path: root/src/map
diff options
context:
space:
mode:
authorgumi <mekolat@users.noreply.github.com>2016-11-27 13:25:54 -0500
committergumi <mekolat@users.noreply.github.com>2016-11-27 13:25:54 -0500
commit9cd9cfa8dcc408b5037e4693f5520fc424240e21 (patch)
tree979e095a276dbe040b938b23e237c4fb34419419 /src/map
parentf604a13e791eecdef273d517f7f6f566383cde28 (diff)
downloadtmwa-9cd9cfa8dcc408b5037e4693f5520fc424240e21.tar.gz
tmwa-9cd9cfa8dcc408b5037e4693f5520fc424240e21.tar.bz2
tmwa-9cd9cfa8dcc408b5037e4693f5520fc424240e21.tar.xz
tmwa-9cd9cfa8dcc408b5037e4693f5520fc424240e21.zip
force sending .gat extension for SMSG_SET_TILES_TYPE
Diffstat (limited to 'src/map')
-rw-r--r--src/map/clif.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/map/clif.cpp b/src/map/clif.cpp
index 57c9dcb..9518504 100644
--- a/src/map/clif.cpp
+++ b/src/map/clif.cpp
@@ -3930,6 +3930,8 @@ void clif_update_collision(dumb_ptr<map_session_data> sd, short x1, short y1,
{
nullpo_retv(sd);
+ VString<15> gat_name = STRPRINTF("%s.gat"_fmt, map_name);
+
Packet_Fixed<0x0231> fixed_231;
fixed_231.x1 = x1;
fixed_231.y1 = y1;
@@ -3937,7 +3939,7 @@ void clif_update_collision(dumb_ptr<map_session_data> sd, short x1, short y1,
fixed_231.y2 = y2;
fixed_231.mask = mask;
fixed_231.unused_layer = 0;
- fixed_231.map = map_name;
+ fixed_231.map = gat_name;
Buffer buf = create_fpacket<0x0231, 34>(fixed_231);
clif_send(buf, sd, SendWho::SELF, wrap<ClientVersion>(7));