| 730 | } |
| 731 | |
| 732 | bool Units::getUnitsByNobleRole(vector<df::unit *> &units, string noble) { |
| 733 | units.clear(); |
| 734 | get_units_by_noble_role(units, noble); |
| 735 | return !units.empty(); |
| 736 | } |
| 737 | |
| 738 | df::unit *Units::getUnitByNobleRole(string noble) { |
| 739 | vector<df::unit *> units; |
nothing calls this directly
no test coverage detected