diff --git a/src/PersonObjects/Player/PlayerObjectGeneralMethods.tsx b/src/PersonObjects/Player/PlayerObjectGeneralMethods.tsx index 23ca8ff3e..835ecffe4 100644 --- a/src/PersonObjects/Player/PlayerObjectGeneralMethods.tsx +++ b/src/PersonObjects/Player/PlayerObjectGeneralMethods.tsx @@ -1788,8 +1788,10 @@ export function getNextCompanyPosition( } export function quitJob(this: IPlayer, company: string): void { - this.isWorking = false; - this.companyName = ""; + if (this.isWorking == true && this.workType == "Working for Company" && this.companyName == company) { + this.isWorking = false; + this.companyName = ""; + } delete this.jobs[company]; }