From ba70a151915bb14ddbe0527d8807508000819df6 Mon Sep 17 00:00:00 2001 From: "lapayo94@gmail.com" Date: Mon, 16 Jul 2012 13:30:33 +0000 Subject: Fixed some small bugs :) git-svn-id: http://mc-server.googlecode.com/svn/trunk@672 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/blocks/BlockLadder.h | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) (limited to 'source/blocks/BlockLadder.h') diff --git a/source/blocks/BlockLadder.h b/source/blocks/BlockLadder.h index 0b63cc8e6..b32f8081d 100644 --- a/source/blocks/BlockLadder.h +++ b/source/blocks/BlockLadder.h @@ -18,11 +18,17 @@ public: OnPlacedByPlayer(a_World, a_Player, a_X, a_Y, a_Z, a_Dir); } - virtual bool CanBeAt(cWorld *a_World, int a_X, int a_Y, int a_Z) + virtual bool CanBePlacedAt(cWorld *a_World, int a_X, int a_Y, int a_Z, char a_Dir) override { - char Dir = cLadder::MetaDataToDirection(a_World->GetBlockMeta( a_X, a_Y, a_Z)); - AddDirection( a_X, a_Y, a_Z, Dir, true ); + AddDirection( a_X, a_Y, a_Z, a_Dir, true ); return a_World->GetBlock( a_X, a_Y, a_Z ) != E_BLOCK_AIR; } + + + virtual bool CanBeAt(cWorld *a_World, int a_X, int a_Y, int a_Z) override + { + char Dir = cLadder::MetaDataToDirection(a_World->GetBlockMeta( a_X, a_Y, a_Z)); + return CanBePlacedAt(a_World, a_X, a_Y, a_Z, Dir); + } }; \ No newline at end of file -- cgit v1.2.3