Веб-сайт самохостера Lotigara

summaryrefslogtreecommitdiff
path: root/source/game/StarEntityMap.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/game/StarEntityMap.hpp')
-rw-r--r--source/game/StarEntityMap.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarEntityMap.hpp b/source/game/StarEntityMap.hpp
index bf8a12a..73883e4 100644
--- a/source/game/StarEntityMap.hpp
+++ b/source/game/StarEntityMap.hpp
@@ -182,7 +182,7 @@ List<shared_ptr<EntityT>> EntityMap::atTile(Vec2I const& pos) const {
List<shared_ptr<EntityT>> list;
forEachEntityAtTile(pos, [&](TileEntityPtr const& entity) {
if (auto e = as<EntityT>(entity))
- list.append(move(e));
+ list.append(std::move(e));
return false;
});
return list;