| 702 | } |
| 703 | |
| 704 | static void autochop_undesignate(color_ostream &out) { |
| 705 | DEBUG(control,out).print("entering autochop_undesignate\n"); |
| 706 | int32_t count = 0; |
| 707 | for (auto plant : world->plants.all) { |
| 708 | if (is_valid_tree(plant) && Designations::unmarkPlant(plant)) |
| 709 | ++count; |
| 710 | } |
| 711 | out.print("undesignated {} tree(s)\n", count); |
| 712 | } |
| 713 | |
| 714 | static void autochop_setTargets(color_ostream &out, int32_t max_logs, int32_t min_logs) { |
| 715 | DEBUG(control,out).print("entering autochop_setTargets\n"); |
nothing calls this directly
no test coverage detected