Dispensers rewritten to use ItemGrid

git-svn-id: http://mc-server.googlecode.com/svn/trunk@1383 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com
2013-04-10 21:40:30 +00:00
parent 1fbc77f9ed
commit dc878898f3
8 changed files with 204 additions and 160 deletions
+11
View File
@@ -8,6 +8,17 @@
cItem cItem::CopyOne(void) const
{
cItem res(*this);
res.m_ItemCount = 1;
return res;
}
bool cItem::IsStackableWith(const cItem & a_OtherStack)
{
if (a_OtherStack.m_ItemType != m_ItemType)