From aebea3dd7c039634dffecffc0d4d65437fa0cbd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Emmanuel=20BENO=C3=8ET?= Date: Tue, 31 Dec 2024 17:54:46 +0100 Subject: [PATCH] fix: add missing space to SQL query --- scripts/game/main/ticks/deathofrats/library.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/game/main/ticks/deathofrats/library.inc b/scripts/game/main/ticks/deathofrats/library.inc index 6172c51..1e52706 100644 --- a/scripts/game/main/ticks/deathofrats/library.inc +++ b/scripts/game/main/ticks/deathofrats/library.inc @@ -1198,7 +1198,7 @@ class main_ticks_deathofrats_library { $q = $this->db->query( "SELECT account1, account2 FROM dor_ingame_check " . "WHERE {$this->now} - ts <= " . (self::inGameCheckDelay * 3600) - . "AND message = 'CHECK' " + . " AND message = 'CHECK' " . "GROUP BY account1, account2" ); while ($r = dbFetchArray($q)) {