1
0

Fixed a few MSVC type warnings.

This commit is contained in:
Mattes D
2014-04-03 09:27:17 +02:00
parent 12b82de502
commit 25529ba62f
3 changed files with 5 additions and 2 deletions

View File

@@ -160,7 +160,7 @@ bool cCommandBlockEntity::LoadFromJson(const Json::Value & a_Value)
m_Command = a_Value.get("Command", "").asString();
m_LastOutput = a_Value.get("LastOutput", "").asString();
m_Result = a_Value.get("SuccessCount", 0).asInt();
m_Result = (NIBBLETYPE)a_Value.get("SuccessCount", 0).asInt();
return true;
}