diff options
author | Mattes D <github@xoft.cz> | 2014-08-20 16:23:31 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2014-08-20 16:23:31 +0200 |
commit | 5410a36f92c1c94f25552dff4a46b9611f0cb917 (patch) | |
tree | 920627577c09fd3270b08bab3e7a6d3d29d52025 /src/Blocks/BlockRedstone.h | |
parent | Player: Silenced a few type conversion warnings. (diff) | |
parent | Removed old classes from the CMakeLists.txt (diff) | |
download | cuberite-5410a36f92c1c94f25552dff4a46b9611f0cb917.tar cuberite-5410a36f92c1c94f25552dff4a46b9611f0cb917.tar.gz cuberite-5410a36f92c1c94f25552dff4a46b9611f0cb917.tar.bz2 cuberite-5410a36f92c1c94f25552dff4a46b9611f0cb917.tar.lz cuberite-5410a36f92c1c94f25552dff4a46b9611f0cb917.tar.xz cuberite-5410a36f92c1c94f25552dff4a46b9611f0cb917.tar.zst cuberite-5410a36f92c1c94f25552dff4a46b9611f0cb917.zip |
Diffstat (limited to 'src/Blocks/BlockRedstone.h')
-rw-r--r-- | src/Blocks/BlockRedstone.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Blocks/BlockRedstone.h b/src/Blocks/BlockRedstone.h index a898c9acb..37d61ed73 100644 --- a/src/Blocks/BlockRedstone.h +++ b/src/Blocks/BlockRedstone.h @@ -26,8 +26,8 @@ public: virtual void ConvertToPickups(cItems & a_Pickups, NIBBLETYPE a_BlockMeta) override { - // Reset meta to 0 - a_Pickups.push_back(cItem(E_ITEM_REDSTONE_DUST, 1)); + // Reset meta to zero + a_Pickups.push_back(cItem(E_ITEM_REDSTONE_DUST, 1, 0)); } } ; |