1
0

Change m_RepairCost to int.

This commit is contained in:
Howaner
2014-05-07 20:43:37 +02:00
parent e86bf64867
commit fbb6404cc8
6 changed files with 10 additions and 16 deletions

View File

@@ -182,7 +182,7 @@ void cItem::FromJson(const Json::Value & a_Value)
m_FireworkItem.FadeColoursFromString(a_Value.get("FadeColours", "").asString(), m_FireworkItem);
}
m_RepairCost = (unsigned short)a_Value.get("RepairCost", 0).asInt();
m_RepairCost = a_Value.get("RepairCost", 0).asInt();
}
}