diff options
Diffstat (limited to 'source/Items/ItemSword.h')
-rw-r--r-- | source/Items/ItemSword.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/Items/ItemSword.h b/source/Items/ItemSword.h index eb4aa0ef9..4eec4c5a0 100644 --- a/source/Items/ItemSword.h +++ b/source/Items/ItemSword.h @@ -14,8 +14,8 @@ public: }
- virtual bool CanHarvestBlock(BLOCKTYPE a_BlockID) override
+ virtual bool CanHarvestBlock(BLOCKTYPE a_BlockType) override
{
- return a_BlockID == E_BLOCK_COBWEB;
+ return a_BlockType == E_BLOCK_COBWEB;
}
};
\ No newline at end of file |