summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTiger Wang <ziwei.tiger@outlook.com>2020-08-20 22:44:19 +0200
committerTiger Wang <ziwei.tiger@outlook.com>2020-08-21 01:53:10 +0200
commit2d28d681c70c011566c185c3650ae360ee5cb19b (patch)
tree92ab25c38df69d2c2d8ac389d5360eb439679515
parentMade cProtocol::Version, EntityMetadata enums less verbose (diff)
downloadcuberite-2d28d681c70c011566c185c3650ae360ee5cb19b.tar
cuberite-2d28d681c70c011566c185c3650ae360ee5cb19b.tar.gz
cuberite-2d28d681c70c011566c185c3650ae360ee5cb19b.tar.bz2
cuberite-2d28d681c70c011566c185c3650ae360ee5cb19b.tar.lz
cuberite-2d28d681c70c011566c185c3650ae360ee5cb19b.tar.xz
cuberite-2d28d681c70c011566c185c3650ae360ee5cb19b.tar.zst
cuberite-2d28d681c70c011566c185c3650ae360ee5cb19b.zip
-rw-r--r--src/BlockEntities/BlockEntityWithItems.cpp2
-rw-r--r--src/BlockEntities/ChestEntity.cpp2
2 files changed, 0 insertions, 4 deletions
diff --git a/src/BlockEntities/BlockEntityWithItems.cpp b/src/BlockEntities/BlockEntityWithItems.cpp
index d7ffc960e..54b67717c 100644
--- a/src/BlockEntities/BlockEntityWithItems.cpp
+++ b/src/BlockEntities/BlockEntityWithItems.cpp
@@ -55,8 +55,6 @@ void cBlockEntityWithItems::OnSlotChanged(cItemGrid * a_Grid, int a_SlotNum)
m_World->MarkChunkDirty(GetChunkX(), GetChunkZ());
m_World->DoWithChunkAt(m_Pos, [&](cChunk & a_Chunk)
{
- auto & Simulator = *m_World->GetRedstoneSimulator();
-
// Notify comparators:
m_World->WakeUpSimulators(m_Pos);
return true;
diff --git a/src/BlockEntities/ChestEntity.cpp b/src/BlockEntities/ChestEntity.cpp
index b5d281fec..5f99da454 100644
--- a/src/BlockEntities/ChestEntity.cpp
+++ b/src/BlockEntities/ChestEntity.cpp
@@ -245,8 +245,6 @@ void cChestEntity::OnSlotChanged(cItemGrid * a_Grid, int a_SlotNum)
m_World->MarkChunkDirty(GetChunkX(), GetChunkZ());
m_World->DoWithChunkAt(m_Pos, [&](cChunk & a_Chunk)
{
- auto & Simulator = *m_World->GetRedstoneSimulator();
-
// Notify comparators:
m_World->WakeUpSimulators(m_Pos);
return true;