mirror of
https://github.com/vcmi/vcmi.git
synced 2025-07-15 01:24:45 +02:00
- Fixed some warnings from cppcheck
- Minor improvements to JSON validation - Cleanup in SDL_Extensions.cpp - Implemented new propery for creature format: idle animation duration - Disabled idle animation of some of conflux creatures (was clearly broken)
This commit is contained in:
@ -2940,10 +2940,10 @@ DuelParameters::SideSettings::SideSettings()
|
||||
heroId = -1;
|
||||
}
|
||||
|
||||
DuelParameters::DuelParameters()
|
||||
DuelParameters::DuelParameters():
|
||||
terType(ETerrainType::DIRT),
|
||||
bfieldType(BFieldType::ROCKLANDS)
|
||||
{
|
||||
terType = ETerrainType::DIRT;
|
||||
bfieldType = BFieldType::ROCKLANDS;
|
||||
}
|
||||
|
||||
DuelParameters DuelParameters::fromJSON(const std::string &fname)
|
||||
|
Reference in New Issue
Block a user