This commit is contained in:
Anuken
2022-05-09 23:50:01 -04:00
parent 95254eef44
commit 6efca04ea8
9 changed files with 9 additions and 12 deletions

View File

@@ -59,7 +59,7 @@ public class TechTree{
}
public static TechNode nodeProduce(UnlockableContent content, Seq<Objective> objectives, Runnable children){
return node(content, content.researchRequirements(), objectives.and(new Produce(content)), children);
return node(content, content.researchRequirements(), objectives.add(new Produce(content)), children);
}
public static TechNode nodeProduce(UnlockableContent content, Runnable children){