summaryrefslogtreecommitdiffstats
path: root/src/Item.cpp
diff options
context:
space:
mode:
authorx12xx12x <44411062+12xx12@users.noreply.github.com>2021-12-02 00:31:10 +0100
committerGitHub <noreply@github.com>2021-12-02 00:31:10 +0100
commit3ff57559e36d3254c64e334fbe3bdd47398fe16f (patch)
tree30a73d405640285863bfa9932afbee482f36b50c /src/Item.cpp
parentAdded ExperienceAmount variable to HOOK_PLAYER_FISHING and HOOK_PLAYER_FISHED (#5345) (diff)
downloadcuberite-3ff57559e36d3254c64e334fbe3bdd47398fe16f.tar
cuberite-3ff57559e36d3254c64e334fbe3bdd47398fe16f.tar.gz
cuberite-3ff57559e36d3254c64e334fbe3bdd47398fe16f.tar.bz2
cuberite-3ff57559e36d3254c64e334fbe3bdd47398fe16f.tar.lz
cuberite-3ff57559e36d3254c64e334fbe3bdd47398fe16f.tar.xz
cuberite-3ff57559e36d3254c64e334fbe3bdd47398fe16f.tar.zst
cuberite-3ff57559e36d3254c64e334fbe3bdd47398fe16f.zip
Diffstat (limited to 'src/Item.cpp')
-rw-r--r--src/Item.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/Item.cpp b/src/Item.cpp
index ba2a8db90..198912aa4 100644
--- a/src/Item.cpp
+++ b/src/Item.cpp
@@ -197,7 +197,7 @@ bool cItem::DamageItem(short a_Amount)
bool cItem::IsFullStack(void) const
{
- return (m_ItemCount >= ItemHandler(m_ItemType)->GetMaxStackSize());
+ return (m_ItemCount >= GetMaxStackSize());
}
@@ -206,16 +206,16 @@ bool cItem::IsFullStack(void) const
char cItem::GetMaxStackSize(void) const
{
- return ItemHandler(m_ItemType)->GetMaxStackSize();
+ return cItemHandler::For(m_ItemType).GetMaxStackSize();
}
-cItemHandler * cItem::GetHandler(void) const
+const cItemHandler & cItem::GetHandler(void) const
{
- return ItemHandler(m_ItemType);
+ return cItemHandler::For(m_ItemType);
}