diff options
author | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-06 20:20:06 +0200 |
---|---|---|
committer | madmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6> | 2013-04-06 20:20:06 +0200 |
commit | 2006de22170d40666fc8437829a10a79556f55bf (patch) | |
tree | fb9ed8c84268039cfc7018cbb4dd1e1ff8852a07 /source/Items/ItemSword.h | |
parent | Mineshafts: Added a (nonworking) mob spawner in cobweb spider nests. (diff) | |
download | cuberite-2006de22170d40666fc8437829a10a79556f55bf.tar cuberite-2006de22170d40666fc8437829a10a79556f55bf.tar.gz cuberite-2006de22170d40666fc8437829a10a79556f55bf.tar.bz2 cuberite-2006de22170d40666fc8437829a10a79556f55bf.tar.lz cuberite-2006de22170d40666fc8437829a10a79556f55bf.tar.xz cuberite-2006de22170d40666fc8437829a10a79556f55bf.tar.zst cuberite-2006de22170d40666fc8437829a10a79556f55bf.zip |
Diffstat (limited to 'source/Items/ItemSword.h')
-rw-r--r-- | source/Items/ItemSword.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/Items/ItemSword.h b/source/Items/ItemSword.h index 327c39a40..37b9ef32d 100644 --- a/source/Items/ItemSword.h +++ b/source/Items/ItemSword.h @@ -16,6 +16,6 @@ public: virtual bool CanHarvestBlock(BLOCKTYPE a_BlockType) override
{
- return a_BlockType == E_BLOCK_COBWEB;
+ return (a_BlockType == E_BLOCK_COBWEB);
}
};
\ No newline at end of file |