fixing other commits after rebase

This commit is contained in:
Snarling
2022-08-09 18:25:02 -04:00
parent 648b7e84bf
commit ea7c2c4981
4 changed files with 21 additions and 26 deletions
+10 -20
View File
@@ -873,31 +873,21 @@ export function NetscriptCorporation(): InternalAPI<NSCorporation> {
return {
...warehouseAPI,
...officeAPI,
getMaterialNames:
(ctx: NetscriptContext) =>
(): string[] =>{
getMaterialNames: () => (): string[] => {
return CorporationConstants.AllMaterials;
},
getIndustryTypes:
(ctx: NetscriptContext) =>
(): string[] =>{
},
getIndustryTypes: () => (): string[] => {
return CorporationConstants.AllIndustryTypes;
},
getUnlockables:
(ctx: NetscriptContext) =>
(): string[] =>{
},
getUnlockables: () => (): string[] => {
return CorporationConstants.AllUnlocks;
},
getUpgradeNames:
(ctx: NetscriptContext) =>
(): string[] =>{
},
getUpgradeNames: () => (): string[] => {
return CorporationConstants.AllUpgrades;
},
getResarchNames:
(ctx: NetscriptContext) =>
(): string[] =>{
},
getResearchNames: () => (): string[] => {
return CorporationConstants.AllResearch;
},
},
expandIndustry:
(ctx: NetscriptContext) =>
(_industryName: unknown, _divisionName: unknown): void => {