summaryrefslogtreecommitdiffstats
path: root/src/NetherPortalScanner.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/NetherPortalScanner.cpp')
-rw-r--r--src/NetherPortalScanner.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/NetherPortalScanner.cpp b/src/NetherPortalScanner.cpp
index 9c5c0929a..7eaa05803 100644
--- a/src/NetherPortalScanner.cpp
+++ b/src/NetherPortalScanner.cpp
@@ -196,7 +196,7 @@ bool cNetherPortalScanner::OnAllChunksAvailable(void)
Vector3i Location = Vector3i(x, y, z);
if (IsValidBuildLocation(Location))
{
- Possibilities.push_back(Vector3i(x, y, z));
+ Possibilities.emplace_back(x, y, z);
}
}
}