diff options
author | 12xx12 <44411062+12xx12@users.noreply.github.com> | 2021-03-07 17:31:43 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-07 17:31:43 +0100 |
commit | 3daf253b7f4ed8243e3262faee35219335e3e088 (patch) | |
tree | 72d7c719838d23c979fdc57f1d6053bab38d8275 /src/Chunk.cpp | |
parent | Mitigate MSVC crash (#5146) (diff) | |
download | cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar.gz cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar.bz2 cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar.lz cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar.xz cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.tar.zst cuberite-3daf253b7f4ed8243e3262faee35219335e3e088.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Chunk.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Chunk.cpp b/src/Chunk.cpp index 6e1273999..dd5944313 100644 --- a/src/Chunk.cpp +++ b/src/Chunk.cpp @@ -1329,7 +1329,7 @@ void cChunk::FastSetBlock(int a_RelX, int a_RelY, int a_RelZ, BLOCKTYPE a_BlockT ) ) { - m_PendingSendBlocks.push_back(sSetBlock(m_PosX, m_PosZ, a_RelX, a_RelY, a_RelZ, a_BlockType, a_BlockMeta)); + m_PendingSendBlocks.emplace_back(m_PosX, m_PosZ, a_RelX, a_RelY, a_RelZ, a_BlockType, a_BlockMeta); } m_BlockData.SetMeta({ a_RelX, a_RelY, a_RelZ }, a_BlockMeta); @@ -1375,7 +1375,7 @@ void cChunk::SendBlockTo(int a_RelX, int a_RelY, int a_RelZ, cClientHandle * a_C if (a_Client == nullptr) { // Queue the block for all clients in the chunk (will be sent in Tick()) - m_PendingSendBlocks.push_back(sSetBlock(m_PosX, m_PosZ, a_RelX, a_RelY, a_RelZ, GetBlock(a_RelX, a_RelY, a_RelZ), GetMeta(a_RelX, a_RelY, a_RelZ))); + m_PendingSendBlocks.emplace_back(m_PosX, m_PosZ, a_RelX, a_RelY, a_RelZ, GetBlock(a_RelX, a_RelY, a_RelZ), GetMeta(a_RelX, a_RelY, a_RelZ)); return; } |