Removed destruction delay when core is destroyed

This commit is contained in:
Anuken
2022-04-26 09:41:25 -04:00
parent f6e0c0ce11
commit 8f5b3ee1e0
4 changed files with 7 additions and 6 deletions

View File

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