From fcccf1e2852170a5b87bbae97cc0211f1df61392 Mon Sep 17 00:00:00 2001 From: VortrexFTW Date: Wed, 9 Sep 2020 03:54:45 -0500 Subject: [PATCH] Fix takejob cmd --- scripts/server/job.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/server/job.js b/scripts/server/job.js index 5963b364..9cd0932e 100644 --- a/scripts/server/job.js +++ b/scripts/server/job.js @@ -599,7 +599,7 @@ function quitJob(client) { // --------------------------------------------------------------------------- function takeJob(client, jobId) { - getClientCurrentSubAccount(client).job = closestJobId; + getClientCurrentSubAccount(client).job = jobId; } // --------------------------------------------------------------------------- \ No newline at end of file