mirror of
https://github.com/bitburner-official/bitburner-src.git
synced 2024-11-26 17:43:48 +01:00
Fix corp industry wrong initial value.
This commit is contained in:
parent
6561413137
commit
4b38d296a8
@ -119,7 +119,7 @@ function Industry(params={}) {
|
|||||||
};
|
};
|
||||||
|
|
||||||
this.name = params.name ? params.name : 0;
|
this.name = params.name ? params.name : 0;
|
||||||
this.type = params.type ? params.type : 0;
|
this.type = params.type ? params.type : Industries.Agriculture;
|
||||||
|
|
||||||
this.sciResearch = new Material({name: "Scientific Research"});
|
this.sciResearch = new Material({name: "Scientific Research"});
|
||||||
this.researched = {}; // Object of acquired Research. Keys = research name
|
this.researched = {}; // Object of acquired Research. Keys = research name
|
||||||
|
Loading…
Reference in New Issue
Block a user