summaryrefslogtreecommitdiffstats
path: root/source/items/ItemRedstoneDust.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--source/items/ItemRedstoneDust.h12
1 files changed, 10 insertions, 2 deletions
diff --git a/source/items/ItemRedstoneDust.h b/source/items/ItemRedstoneDust.h
index a0aee1e5e..4d1459bc6 100644
--- a/source/items/ItemRedstoneDust.h
+++ b/source/items/ItemRedstoneDust.h
@@ -1,7 +1,11 @@
+
#pragma once
#include "Item.h"
+
+
+
class cItemRedstoneDustHandler : public cItemHandler
{
public:
@@ -20,8 +24,12 @@ public:
return E_BLOCK_REDSTONE_WIRE;
}
- virtual NIBBLETYPE GetBlockMeta(NIBBLETYPE a_ItemMeta) override
+ virtual NIBBLETYPE GetBlockMeta(short a_ItemDamage) override
{
return 0;
}
-}; \ No newline at end of file
+} ;
+
+
+
+