File diff r10011:61b953b16f93 → r10012:48a6b9de4af5
src/unmovable_map.h
Show inline comments
 
@@ -80,13 +80,13 @@ static inline bool IsOwnedLandTile(TileI
 
 * @pre IsTileType(t, MP_UNMOVABLE)
 
 * @return true if and only if the tile is a HQ tile.
 
 */
 
static inline bool IsCompanyHQ(TileIndex t)
 
{
 
	assert(IsTileType(t, MP_UNMOVABLE));
 
	return IsInsideMM(GetUnmovableType(t), UNMOVABLE_HQ_NORTH, UNMOVABLE_HQ_END);
 
	return HasBit(_m[t].m5, 7);
 
}
 

	
 
/**
 
 * Is this unmovable tile a statue?
 
 * @param t the tile to inspect.
 
 * @pre IsTileType(t, MP_UNMOVABLE)