diff options
Diffstat (limited to 'source/game/StarQuests.cpp')
-rw-r--r-- | source/game/StarQuests.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/StarQuests.cpp b/source/game/StarQuests.cpp index d3c07c5..6643362 100644 --- a/source/game/StarQuests.cpp +++ b/source/game/StarQuests.cpp @@ -370,7 +370,7 @@ void Quest::setWorldId(Maybe<WorldId> worldId) { } void Quest::setLocation(Maybe<pair<Vec3I, SystemLocation>> location) { - m_location = move(location); + m_location = std::move(location); } void Quest::setServerUuid(Maybe<Uuid> serverUuid) { |