diff options
Diffstat (limited to 'source/game/items/StarInspectionTool.cpp')
-rw-r--r-- | source/game/items/StarInspectionTool.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/game/items/StarInspectionTool.cpp b/source/game/items/StarInspectionTool.cpp index 4f9b2cf..a9b12c4 100644 --- a/source/game/items/StarInspectionTool.cpp +++ b/source/game/items/StarInspectionTool.cpp @@ -60,7 +60,7 @@ List<LightSource> InspectionTool::lightSources() const { lightSource.pointBeam = m_beamWidth; lightSource.beamAngle = angle; lightSource.beamAmbience = m_ambientFactor; - return {move(lightSource)}; + return {std::move(lightSource)}; } float InspectionTool::inspectionHighlightLevel(InspectableEntityPtr const& inspectable) const { |