CORP: Move Sale after Export in Corp States

This commit is contained in:
T.J. Eckman
2023-01-30 19:15:56 -05:00
parent d5707931c6
commit a141431e08
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -15,7 +15,7 @@ import { IndustryType, EmployeePositions } from "./Enums";
// This structure + import * as corpConstants allows easier type definitions for individual properties.
/** Names of all corporation game states */
export const stateNames: CorpStateName[] = ["START", "PURCHASE", "PRODUCTION", "SALE", "EXPORT"],
export const stateNames: CorpStateName[] = ["START", "PURCHASE", "PRODUCTION", "EXPORT", "SALE"],
// TODO: remove IndustryType and EmployeePositions enums and just use the typed strings.
/** Names of all corporation employee positions */
employeePositions: CorpEmployeePosition[] = Object.values(EmployeePositions),