diff options
Diffstat (limited to '')
-rw-r--r-- | src/ChunkStay.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ChunkStay.cpp b/src/ChunkStay.cpp index 657682bf8..520d3cccb 100644 --- a/src/ChunkStay.cpp +++ b/src/ChunkStay.cpp @@ -51,7 +51,7 @@ void cChunkStay::Add(int a_ChunkX, int a_ChunkZ) return; } } // for itr - Chunks[] - m_Chunks.push_back(cChunkCoords(a_ChunkX, a_ChunkZ)); + m_Chunks.emplace_back(a_ChunkX, a_ChunkZ); } |