1
0

Changed GetBlockMeta to return NIBBLETYPE instead of char

git-svn-id: http://mc-server.googlecode.com/svn/trunk@675 0a769ca7-a7f5-676a-18bf-c427514a06d6
This commit is contained in:
madmaxoft@gmail.com
2012-07-16 18:29:33 +00:00
parent ee4a6df36b
commit 3eff147355
11 changed files with 12 additions and 12 deletions

View File

@@ -212,7 +212,7 @@ BLOCKTYPE cItemHandler::GetBlockType()
return m_ItemID;
}
char cItemHandler::GetBlockMeta(char a_ItemMeta)
NIBBLETYPE cItemHandler::GetBlockMeta(char a_ItemMeta)
{
return a_ItemMeta; //This keeps most textures. The few other items have to override this
}