Added a check for exisiting industry type before expanding

This commit is contained in:
phyzical 2022-02-04 17:34:16 +08:00
parent 9ddb1c4379
commit 608cc089b2

@ -16,6 +16,9 @@ import { IndustryUpgrades } from "./IndustryUpgrades";
import { ResearchMap } from "./ResearchMap";
export function NewIndustry(corporation: ICorporation, industry: string, name: string): void {
if (corporation.divisions.find(({ type }) => industry == type))
throw new Error("You have already expanded into this industry!");
for (let i = 0; i < corporation.divisions.length; ++i) {
if (corporation.divisions[i].name === name) {
throw new Error("This division name is already in use!");