Merge pull request #1007 from danielyxie/fix-reputation-transfer

Fix reputation transfering when applying for other jobs
This commit is contained in:
hydroflame 2021-06-09 16:33:42 -04:00 committed by GitHub
commit 6d072d766d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1740,7 +1740,6 @@ export function applyForJob(entryPosType, sing=false) {
}
}
this.companyName = company.name;
this.jobs[company.name] = pos.name;
document.getElementById("world-menu-header").click();
@ -1863,7 +1862,6 @@ export function applyForEmployeeJob(sing=false) {
export function applyForPartTimeEmployeeJob(sing=false) {
var company = Companies[this.location]; //Company being applied to
if (this.isQualified(company, CompanyPositions[posNames.PartTimeCompanyPositions[1]])) {
this.companyName = company.name;
this.jobs[company.name] = posNames.PartTimeCompanyPositions[1];
document.getElementById("world-menu-header").click();
document.getElementById("world-menu-header").click();