summaryrefslogtreecommitdiff
path: root/src/resources/map/map.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources/map/map.cpp')
-rw-r--r--src/resources/map/map.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/resources/map/map.cpp b/src/resources/map/map.cpp
index 759951bcf..49cb43810 100644
--- a/src/resources/map/map.cpp
+++ b/src/resources/map/map.cpp
@@ -1275,7 +1275,10 @@ void Map::addPortalTile(const std::string &restrict name,
const int x, const int y) restrict2
{
if (mSpecialLayer)
+ {
mSpecialLayer->setTile(x, y, new MapItem(type, name, x, y));
+ mSpecialLayer->updateCache();
+ }
mMapPortals.push_back(new MapItem(type, name, x, y));
}
@@ -1296,6 +1299,7 @@ void Map::updatePortalTile(const std::string &restrict name,
{
item = new MapItem(type, name, x, y);
mSpecialLayer->setTile(x, y, item);
+ mSpecialLayer->updateCache();
}
}
else if (addNew)