| 589 | }; |
| 590 | |
| 591 | bool lineY (MapExtras::MapCache & MCache, |
| 592 | circle_what what, |
| 593 | df::tile_dig_designation type, |
| 594 | int32_t priority, |
| 595 | int32_t x1, int32_t x2, int32_t y, int32_t z, |
| 596 | int x_max, int y_max |
| 597 | ) |
| 598 | { |
| 599 | for(int32_t x = x1; x <= x2; x++) |
| 600 | { |
| 601 | dig(MCache, what, type, priority, x,y,z, x_max, y_max); |
| 602 | } |
| 603 | return true; |
| 604 | }; |
| 605 | |
| 606 | int32_t parse_priority(color_ostream &out, vector<string> ¶meters) |
| 607 | { |