| 285 | // |
| 286 | |
| 287 | static bool is_noble_zone(int32_t zone_id, const string & code) { |
| 288 | auto it = noble_zones.find(zone_id); |
| 289 | return it != noble_zones.end() && it->second[0] == code; |
| 290 | } |
| 291 | |
| 292 | static int32_t get_spouse_hfid(color_ostream &out, df::historical_figure *hf) { |
| 293 | for (auto link : hf->histfig_links) { |
no test coverage detected