summaryrefslogtreecommitdiffstats
path: root/src/World.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/World.h')
-rw-r--r--src/World.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/World.h b/src/World.h
index 5ef63a540..98b241a2b 100644
--- a/src/World.h
+++ b/src/World.h
@@ -121,15 +121,13 @@ public:
public cTask
{
public:
- cTaskSendBlockToAllPlayers(int a_BlockX, int a_BlockY, int a_BlockZ);
+ cTaskSendBlockToAllPlayers(std::vector<Vector3i> & a_SendQueue);
protected:
// cTask overrides:
virtual void Run(cWorld & a_World) override;
- int m_BlockX;
- int m_BlockY;
- int m_BlockZ;
+ std::vector<Vector3i> m_SendQueue;
};