* Fix cmake not adding Werror on clang, and _lots_ of warnings * WIP: Build fixes * Cannot make intermediate blockhandler instance * Tiger's changes * Fix BitIndex check * Handle invalid NextState values in cMultiVersionProtocol Co-authored-by: Tiger Wang <ziwei.tiger@outlook.com>
26 lines
344 B
C++
26 lines
344 B
C++
|
|
#pragma once
|
|
|
|
#include "BlockEntity.h"
|
|
#include "Mixins.h"
|
|
|
|
|
|
|
|
|
|
|
|
class cBlockJukeboxHandler final :
|
|
public cClearMetaOnDrop<cBlockEntityHandler>
|
|
{
|
|
public:
|
|
|
|
using cClearMetaOnDrop<cBlockEntityHandler>::cClearMetaOnDrop;
|
|
|
|
private:
|
|
|
|
virtual ColourID GetMapBaseColourID(NIBBLETYPE a_Meta) const override
|
|
{
|
|
UNUSED(a_Meta);
|
|
return 10;
|
|
}
|
|
} ;
|