mirror of
https://github.com/vcmi/vcmi.git
synced 2025-08-13 19:54:17 +02:00
- Terrain config
- Fix for underground terrains
This commit is contained in:
@@ -103,6 +103,7 @@
|
||||
"minimapBlocked" : [ 41, 40, 41 ],
|
||||
"music" : "Lava.mp3",
|
||||
"tiles" : "LAVATL",
|
||||
"type" : "SUB",
|
||||
"code" : "lv",
|
||||
"river" : "rl",
|
||||
"battleFields" : ["lava"],
|
||||
|
@@ -267,7 +267,7 @@ bool TerrainType::isPassable() const
|
||||
|
||||
bool TerrainType::isUnderground() const
|
||||
{
|
||||
return passabilityType != PassabilityType::SUBTERRANEAN;
|
||||
return passabilityType == PassabilityType::SUBTERRANEAN;
|
||||
}
|
||||
|
||||
bool TerrainType::isTransitionRequired() const
|
||||
|
Reference in New Issue
Block a user