mirror of
https://github.com/Anuken/Mindustry.git
synced 2025-03-04 22:50:29 +07:00
Do not make cores derelict
This commit is contained in:
parent
5c9ad34322
commit
dfac73d81c
@ -294,7 +294,11 @@ public class Teams{
|
||||
|
||||
//convert all team tiles to neutral, randomly killing them
|
||||
for(var b : builds){
|
||||
scheduleDerelict(b);
|
||||
if(b instanceof CoreBuild){
|
||||
b.kill();
|
||||
}else{
|
||||
scheduleDerelict(b);
|
||||
}
|
||||
}
|
||||
|
||||
//kill all units randomly
|
||||
|
Loading…
Reference in New Issue
Block a user