summaryrefslogtreecommitdiffstats
path: root/src/Items/ItemMobHead.h
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/Items/ItemMobHead.h (renamed from src/Items/ItemSkull.h)6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/Items/ItemSkull.h b/src/Items/ItemMobHead.h
index 3648f1436..5ae040282 100644
--- a/src/Items/ItemSkull.h
+++ b/src/Items/ItemMobHead.h
@@ -8,11 +8,11 @@
-class cItemSkullHandler :
+class cItemMobHeadHandler :
public cItemHandler
{
public:
- cItemSkullHandler(int a_ItemType) :
+ cItemMobHeadHandler(int a_ItemType) :
cItemHandler(a_ItemType)
{
}
@@ -31,10 +31,8 @@ public:
BLOCKTYPE & a_BlockType, NIBBLETYPE & a_BlockMeta
) override
{
-
a_BlockType = E_BLOCK_HEAD;
a_BlockMeta = (NIBBLETYPE)(a_Player->GetEquippedItem().m_ItemDamage & 0x0f);
-
return true;
}
} ;