diff options
Diffstat (limited to 'source/blocks/BlockTorch.h')
-rw-r--r-- | source/blocks/BlockTorch.h | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/source/blocks/BlockTorch.h b/source/blocks/BlockTorch.h index 1e4827ac1..9a2325994 100644 --- a/source/blocks/BlockTorch.h +++ b/source/blocks/BlockTorch.h @@ -16,10 +16,16 @@ public: return false;
}
- 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 = cTorch::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 = cTorch::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 |