Tweaked wait time

This commit is contained in:
2019-05-20 15:07:07 +10:00
parent cbfbf2320b
commit 5ad864103f
+1 -1
View File
@@ -131,7 +131,7 @@ const recruit = (connection) => (req, res) => {
let timespans = results[0][Object.keys(results[0])];
//not enough time has passed
if (timespans < 24) {
if (timespans < 22) {
res.status(400).write('Not enough time has passed');
res.end();
return;