Fix compilation errors

master
Brandon 2017-02-11 21:45:33 -06:00
parent 8ce248b281
commit 90df6de663
2 changed files with 1 additions and 20 deletions

View File

@ -9,6 +9,7 @@
#include "gamedef.h"
#include "environment.h"
#include "clientenvironment.h"
#include "sound.h"
#include "settings.h"
#include "sound_openal.h"

View File

@ -247,26 +247,6 @@ void ItemStack::deSerialize(const std::string &str, IItemDefManager *itemdef)
deSerialize(is, itemdef);
}
std::string ItemStack::getMetadataDescription()
{
std::string d("");
std::string m(metadata);
size_t p1;
if (m.empty())
return d;
if (m.substr(0,8).compare("return {") == 0) {
m = m.substr(8, m.length() - 9);
p1 = m.find("[\"description\"] = \"");
if (p1 != std::string::npos) {
size_t p2 = m.find("\"", p1 + 20);
return m.substr(p1 + 21, p2 - p1 - 21);
}
}
return d;
}
std::string ItemStack::getItemString() const
{
std::ostringstream os(std::ios::binary);