Added new nodes to DSL for a wider variety of commands and scripts.

This commit is contained in:
2026-05-09 20:12:53 +02:00
parent 8b15027ac1
commit a472adf74b
26 changed files with 797 additions and 21 deletions
+1 -1
View File
@@ -8,7 +8,7 @@ public class Research
public Research(ResearchData data)
{
this.data = data;
state = ResearchState.UNDEFINED;
state = data.Id == "basics" ? ResearchState.RESEARCHED : ResearchState.UNDEFINED;
}
public ResearchResult Execute(double delta)