THE KILLSQUARE (does not kill)

This commit is contained in:
the me 2022-08-14 21:36:37 -07:00
parent cfcfd3e263
commit 47cae629df
10 changed files with 123 additions and 6 deletions

View file

@ -14,7 +14,9 @@ function c_selectunit(unitobject) {
}
function c_colortile(x, y, color) {
if !c_tileexists(x, y) return false;
if !array_contains(global.map[x][y], color) {
array_push(global.map[x][y].overlays, color);
}
return true;
}