Now have good coverage on map but need to actually confirm results in the test.

This commit is contained in:
Zed A. Shaw 2024-11-29 11:24:23 -05:00
parent 97255eb813
commit d0d62836e3
5 changed files with 61 additions and 7 deletions

View file

@ -295,10 +295,6 @@ void Map::set_target(const Point &at, int value) {
$input_map[at.y][at.x] = 0;
}
void Map::clear_light_target(const Point &at) {
$input_map[at.y][at.x] = 1;
}
void Map::clear_target(const Point &at) {
$input_map[at.y][at.x] = 1;
}
@ -386,6 +382,10 @@ void Map::reset_light() {
}
}
void Map::clear_light_target(const Point &at) {
$input_map[at.y][at.x] = 1;
}
void Map::set_light_target(const Point &at, int value) {
set_target(at, value);
}