Skip to content
Snippets Groups Projects
Commit d97bc679 authored by Atanamo's avatar Atanamo
Browse files

Modified bot clause: Kill bots of archived games older than 10 days

parent 8b22b153
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -237,7 +237,8 @@ class Database
sql = "
SELECT `ID` AS `id`, `Galaxyname` AS `title`
FROM `#{Config.SQL_TABLES.GAMES_LIST}`
WHERE `Status`>=0
WHERE `Status`>=0 AND `Status`<4
OR `Status`=4 AND IFNULL(`FinishDateTime`, NOW()) >= (NOW() - INTERVAL 10 DAY)
ORDER BY `Status` ASC, `ID` ASC
LIMIT #{Config.MAX_BOTS}
"
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment