Skip to content

Commit

Permalink
Update NationHeader.java
Browse files Browse the repository at this point in the history
  • Loading branch information
xdnw committed May 12, 2024
1 parent 88baf90 commit 597a75e
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@ public Long read(String string) {
public final BooleanColumn<DBNation> mars_landing_np = new BooleanColumn<>(this, (nation, value) -> nation.setProject(Projects.MARS_LANDING));
// public int surveillance_network_np;
public final BooleanColumn<DBNation> surveillance_network_np = new BooleanColumn<>(this, (nation, value) -> nation.setProject(Projects.SURVEILLANCE_NETWORK));
// public int guiding_satellite_np
public final BooleanColumn<DBNation> guiding_satellite_np = new BooleanColumn<>(this, (nation, value) -> nation.setProject(Projects.GUIDING_SATELLITE));
// public int nuclear_launch_facility_np
public final BooleanColumn<DBNation> nuclear_launch_facility_np = new BooleanColumn<>(this, (nation, value) -> nation.setProject(Projects.NUCLEAR_LAUNCH_FACILITY));

private DBNationSnapshot cached;
private int nationLoaded;
Expand Down

0 comments on commit 597a75e

Please sign in to comment.