diff options
Diffstat (limited to 'source/blocks/BlockRedstoneTorch.h')
-rw-r--r-- | source/blocks/BlockRedstoneTorch.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blocks/BlockRedstoneTorch.h b/source/blocks/BlockRedstoneTorch.h index 927cf3d7c..0b8be74e1 100644 --- a/source/blocks/BlockRedstoneTorch.h +++ b/source/blocks/BlockRedstoneTorch.h @@ -24,12 +24,12 @@ public: return CanBePlacedAt(a_World, a_X, a_Y, a_Z, Dir);
}
- virtual int GetDropID()
+ virtual int GetDropID() override
{
return E_ITEM_REDSTONE_TORCH_ON;
}
- virtual bool CanBePlacedOnSide()
+ virtual bool CanBePlacedOnSide() override
{
return true;
}
|