Better timed destroy with overlap

This commit is contained in:
Anuken 2022-04-22 20:22:09 -04:00
parent 764b1c27bf
commit d559cd2412

View File

@ -328,7 +328,7 @@ public class Teams{
}
for(var build : builds){
if(build.within(x, y, range)){
if(build.within(x, y, range) && !cores.contains(c -> c.within(x, y, range))){
Time.run(Mathf.random(0f, 60f * 6f), build::kill);
}
}