Skip to content

Commit

Permalink
remove Exiting out of buyjob early 0 message
Browse files Browse the repository at this point in the history
  • Loading branch information
genbtc committed Mar 29, 2018
1 parent c6939e9 commit 1ffdfe2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/jobs.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ MODULES["jobs"].customRatio; //set this like above and it will Auto use it.

function safeBuyJob(jobTitle, amount) {
if (!Number.isFinite(amount) || amount === 0 || typeof amount === 'undefined') {
debug("Exiting out of buyjob early " + jobTitle + " " + amount);
//debug("Exiting out of buyjob early " + jobTitle + " " + amount);
return false;
}
var old = preBuy2();
Expand Down

0 comments on commit 1ffdfe2

Please sign in to comment.