summaryrefslogtreecommitdiffstats
path: root/src/Blocks/BlockGlowstone.h
blob: 5f0d95deedef063a70d6560dcf5ef9ba8a132eb5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30

#pragma once

#include "BlockHandler.h"





class cBlockGlowstoneHandler :
	public cBlockHandler
{
public:
	cBlockGlowstoneHandler(BLOCKTYPE a_BlockType)
		: cBlockHandler(a_BlockType)
	{
	}
	

	virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override
	{
		// Reset meta to 0
		// TODO: More drops?
		a_Pickups.push_back(cItem(E_ITEM_GLOWSTONE_DUST, 1, 0));
	}
} ;