| 132 | } |
| 133 | |
| 134 | static df::burrow* getBurrow(color_ostream &out){ |
| 135 | int id = config.get_int(CONFIG_BURROW); |
| 136 | auto burrow = df::burrow::find(id); |
| 137 | if (!burrow) { |
| 138 | config.set_int(CONFIG_BURROW, -1); |
| 139 | } |
| 140 | return burrow; |
| 141 | } |
| 142 | |
| 143 | static void printStatus(color_ostream &out){ |
| 144 | if (!is_enabled) |
no test coverage detected