2
0
Эх сурвалжийг харах

Fix incorrect sand shore id

Tomasz Zieliński 2 жил өмнө
parent
commit
2747174810

+ 1 - 1
lib/gameState/CGameState.cpp

@@ -1244,7 +1244,7 @@ BattleField CGameState::battleGetBattlefieldType(int3 tile, CRandomGenerator & r
 	}
 
 	if(map->isCoastalTile(tile)) //coastal tile is always ground
-		return BattleField(*VLC->modh->identifiers.getIdentifier("core", "battlefield", "sand_shore"));
+		return BattleField(*VLC->modh->identifiers.getIdentifier("core", "battlefield.sand_shore"));
 	
 	return BattleField(*RandomGeneratorUtil::nextItem(t.terType->battleFields, rand));
 }