summaryrefslogtreecommitdiff
path: root/src/resources/map/map.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-12-22 01:28:56 +0300
committerAndrei Karas <akaras@inbox.ru>2017-12-22 01:28:56 +0300
commitcc7a39f467a49b2e91717739cb6e7c3c4b34a245 (patch)
treeb930d808b5782b77dfa7cd52bbaa902101b8ba06 /src/resources/map/map.cpp
parent2e07d1c5eb79eb291c20da511d0a313f56690756 (diff)
downloadplus-cc7a39f467a49b2e91717739cb6e7c3c4b34a245.tar.gz
plus-cc7a39f467a49b2e91717739cb6e7c3c4b34a245.tar.bz2
plus-cc7a39f467a49b2e91717739cb6e7c3c4b34a245.tar.xz
plus-cc7a39f467a49b2e91717739cb6e7c3c4b34a245.zip
Remove default parameters from map.
Diffstat (limited to 'src/resources/map/map.cpp')
-rw-r--r--src/resources/map/map.cpp20
1 files changed, 14 insertions, 6 deletions
diff --git a/src/resources/map/map.cpp b/src/resources/map/map.cpp
index 8477b026e..39365643d 100644
--- a/src/resources/map/map.cpp
+++ b/src/resources/map/map.cpp
@@ -1180,18 +1180,26 @@ void Map::addExtraLayer() restrict2
}
if (type == MapItemType::PORTAL)
{
- updatePortalTile(comment, type, atoi(x.c_str()),
- atoi(y.c_str()), false);
+ updatePortalTile(comment,
+ type,
+ atoi(x.c_str()),
+ atoi(y.c_str()),
+ false);
}
else if (type == MapItemType::HOME)
{
- updatePortalTile(comment, type, atoi(x.c_str()),
- atoi(y.c_str()));
+ updatePortalTile(comment,
+ type,
+ atoi(x.c_str()),
+ atoi(y.c_str()),
+ true);
}
else
{
- addPortalTile(comment, type, atoi(x.c_str()),
- atoi(y.c_str()));
+ addPortalTile(comment,
+ type,
+ atoi(x.c_str()),
+ atoi(y.c_str()));
}
}
}