summaryrefslogtreecommitdiffstats
path: root/src/Blocks/ChunkInterface.cpp
blob: b2dda19f4953191dc2730efd60f9a1550c6a9dc0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12

#include "Globals.h"

#include "ChunkInterface.h"
#include "BlockHandler.h"

bool cChunkInterface::DigBlock(cWorldInterface & a_WorldInterface, int a_X, int a_Y, int a_Z)
{
	cBlockHandler *Handler = cBlockHandler::GetBlockHandler(GetBlock(a_X, a_Y, a_Z));
	Handler->OnDestroyed(*this, a_WorldInterface, a_X, a_Y, a_Z);
	return m_ChunkMap->DigBlock(a_X, a_Y, a_Z);
}