summaryrefslogtreecommitdiffstats
path: root/src/Item.cpp
diff options
context:
space:
mode:
authorMattes D <github@xoft.cz>2014-05-07 22:18:53 +0200
committerMattes D <github@xoft.cz>2014-05-07 22:18:53 +0200
commitd1b719885da02e917a420b625085e0bd6b9fd70b (patch)
treec8cd2b05be0874aca2f3f5ed572e823ef6c860d9 /src/Item.cpp
parentMerge pull request #853 from Howaner/Slabs (diff)
parentMissing comma (diff)
downloadcuberite-d1b719885da02e917a420b625085e0bd6b9fd70b.tar
cuberite-d1b719885da02e917a420b625085e0bd6b9fd70b.tar.gz
cuberite-d1b719885da02e917a420b625085e0bd6b9fd70b.tar.bz2
cuberite-d1b719885da02e917a420b625085e0bd6b9fd70b.tar.lz
cuberite-d1b719885da02e917a420b625085e0bd6b9fd70b.tar.xz
cuberite-d1b719885da02e917a420b625085e0bd6b9fd70b.tar.zst
cuberite-d1b719885da02e917a420b625085e0bd6b9fd70b.zip
Diffstat (limited to 'src/Item.cpp')
-rw-r--r--src/Item.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/Item.cpp b/src/Item.cpp
index 7e472f6d8..d6e8b224a 100644
--- a/src/Item.cpp
+++ b/src/Item.cpp
@@ -151,6 +151,8 @@ void cItem::GetJson(Json::Value & a_OutValue) const
a_OutValue["Colours"] = m_FireworkItem.ColoursToString(m_FireworkItem);
a_OutValue["FadeColours"] = m_FireworkItem.FadeColoursToString(m_FireworkItem);
}
+
+ a_OutValue["RepairCost"] = m_RepairCost;
}
}
@@ -179,6 +181,8 @@ void cItem::FromJson(const Json::Value & a_Value)
m_FireworkItem.ColoursFromString(a_Value.get("Colours", "").asString(), m_FireworkItem);
m_FireworkItem.FadeColoursFromString(a_Value.get("FadeColours", "").asString(), m_FireworkItem);
}
+
+ m_RepairCost = a_Value.get("RepairCost", 0).asInt();
}
}