diff options
Diffstat (limited to 'source/BlockID.cpp')
-rw-r--r-- | source/BlockID.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/source/BlockID.cpp b/source/BlockID.cpp index 3652938c2..9cdc05c58 100644 --- a/source/BlockID.cpp +++ b/source/BlockID.cpp @@ -251,6 +251,17 @@ AString ItemTypeToString(short a_ItemType) +AString ItemToFullString(const cItem & a_Item) +{ + AString res; + Printf(res, "%s:%d * %d", ItemToString(a_Item).c_str(), a_Item.m_ItemHealth, a_Item.m_ItemCount); + return res; +} + + + + + EMCSBiome StringToBiome(const AString & a_BiomeString) { // If it is a number, return it: |