diff options
Diffstat (limited to 'source/blocks/BlockLadder.h')
-rw-r--r-- | source/blocks/BlockLadder.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blocks/BlockLadder.h b/source/blocks/BlockLadder.h index b32f8081d..4c7f37b1f 100644 --- a/source/blocks/BlockLadder.h +++ b/source/blocks/BlockLadder.h @@ -12,7 +12,7 @@ public: }
- virtual void PlaceBlock(cWorld *a_World, cPlayer *a_Player, char a_BlockMeta, int a_X, int a_Y, int a_Z, char a_Dir)
+ virtual void PlaceBlock(cWorld *a_World, cPlayer *a_Player, NIBBLETYPE a_BlockMeta, int a_X, int a_Y, int a_Z, char a_Dir) override
{
a_World->SetBlock(a_X, a_Y, a_Z, m_BlockID, cLadder::DirectionToMetaData(a_Dir));
OnPlacedByPlayer(a_World, a_Player, a_X, a_Y, a_Z, a_Dir);
|