1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-24 22:14:36 +02:00

fixed typo in specialty log

This commit is contained in:
Henning Koehler 2017-09-13 01:35:57 +12:00
parent c31950612c
commit d7942fd929
2 changed files with 49 additions and 4 deletions

View File

@ -31,9 +31,54 @@
{ "skill" : "leadership", "level": "basic" },
{ "skill" : "archery", "level": "basic" }
],
"specialties":
[
{ "type":1, "val": 0, "subtype": 0, "info": 2 }
"specialty" : [
{
"limiter" : {
"parameters" : [
"archer",
true
],
"type" : "CREATURE_TYPE_LIMITER"
},
"type" : "STACKS_SPEED",
"val" : 1
},
{
"limiter" : {
"parameters" : [
"archer",
true
],
"type" : "CREATURE_TYPE_LIMITER"
},
"subtype" : "attack",
"type" : "PRIMARY_SKILL",
"updater" : {
"parameters" : [
6,
2
],
"type" : "GROWS_WITH_LEVEL"
}
},
{
"limiter" : {
"parameters" : [
"archer",
true
],
"type" : "CREATURE_TYPE_LIMITER"
},
"subtype" : "defence",
"type" : "PRIMARY_SKILL",
"updater" : {
"parameters" : [
3,
2
],
"type" : "GROWS_WITH_LEVEL"
}
}
]
},
"edric":

View File

@ -747,7 +747,7 @@ void CHeroHandler::afterLoadFinalization()
}
}
hero->specDeprecated.clear();
logMod->trace("\"specialty\" = %s", specVec.toJson());
logMod->trace("\"specialty\" : %s", specVec.toJson());
}
}
}