Fixed sectors not auto-unlocking
This commit is contained in:
@@ -501,7 +501,6 @@ map.multiplayer = Only the host can view sectors.
|
|||||||
uncover = Uncover
|
uncover = Uncover
|
||||||
configure = Configure Loadout
|
configure = Configure Loadout
|
||||||
|
|
||||||
#TODO
|
|
||||||
loadout = Loadout
|
loadout = Loadout
|
||||||
resources = Resources
|
resources = Resources
|
||||||
bannedblocks = Banned Blocks
|
bannedblocks = Banned Blocks
|
||||||
@@ -509,12 +508,6 @@ addall = Add All
|
|||||||
launch.from = Launching From: [accent]{0}
|
launch.from = Launching From: [accent]{0}
|
||||||
launch.destination = Destination: {0}
|
launch.destination = Destination: {0}
|
||||||
configure.invalid = Amount must be a number between 0 and {0}.
|
configure.invalid = Amount must be a number between 0 and {0}.
|
||||||
zone.unlocked = [lightgray]{0} unlocked.
|
|
||||||
zone.requirement.complete = Requirement for {0} completed:[lightgray]\n{1}
|
|
||||||
zone.resources = [lightgray]Resources Detected:
|
|
||||||
zone.objective = [lightgray]Objective: [accent]{0}
|
|
||||||
zone.objective.survival = Survive
|
|
||||||
zone.objective.attack = Destroy Enemy Core
|
|
||||||
add = Add...
|
add = Add...
|
||||||
boss.health = Guardian Health
|
boss.health = Guardian Health
|
||||||
|
|
||||||
|
|||||||
@@ -551,7 +551,7 @@ sectors.rename = Переименовать сектор
|
|||||||
sectors.enemybase = [scarlet]Вражеская база
|
sectors.enemybase = [scarlet]Вражеская база
|
||||||
sectors.vulnerable = [scarlet]Уязвим
|
sectors.vulnerable = [scarlet]Уязвим
|
||||||
sectors.underattack = [scarlet]Атакован! [accent]{0}% повреждений
|
sectors.underattack = [scarlet]Атакован! [accent]{0}% повреждений
|
||||||
sectors.survives = [accent]Продержался {0} волн(ы)
|
sectors.survives = [accent]Продержиться {0} волн(ы)
|
||||||
|
|
||||||
sector.curcapture = Сектор захвачен
|
sector.curcapture = Сектор захвачен
|
||||||
sector.curlost = Сектор потерян
|
sector.curlost = Сектор потерян
|
||||||
|
|||||||
@@ -223,7 +223,7 @@ public class Control implements ApplicationListener, Loadable{
|
|||||||
|
|
||||||
for(TechNode node : TechTree.all){
|
for(TechNode node : TechTree.all){
|
||||||
if(!node.content.unlocked() && node.requirements.length == 0 && !node.objectives.contains(o -> !o.complete())){
|
if(!node.content.unlocked() && node.requirements.length == 0 && !node.objectives.contains(o -> !o.complete())){
|
||||||
node.content.unlocked();
|
node.content.unlock();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -700,11 +700,8 @@ public class PlanetDialog extends BaseDialog implements PlanetInterfaceRenderer{
|
|||||||
if(sector.save != null && sector.info.resources.any()){
|
if(sector.save != null && sector.info.resources.any()){
|
||||||
stable.table(t -> {
|
stable.table(t -> {
|
||||||
t.add("@sectors.resources").padRight(4);
|
t.add("@sectors.resources").padRight(4);
|
||||||
int idx = 0;
|
|
||||||
int max = 5;
|
|
||||||
for(UnlockableContent c : sector.info.resources){
|
for(UnlockableContent c : sector.info.resources){
|
||||||
t.image(c.icon(Cicon.small)).padRight(3).size(Cicon.small.size);
|
t.image(c.icon(Cicon.small)).padRight(3).size(Cicon.small.size);
|
||||||
//if(++idx % max == 0) t.row();
|
|
||||||
}
|
}
|
||||||
}).padLeft(10f).fillX().row();
|
}).padLeft(10f).fillX().row();
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user