Fix: random connection bool

This commit is contained in:
Kaaninchen
2026-07-20 14:37:21 +02:00
parent 8a7282a97a
commit 0e0d3773ab
+1 -1
View File
@@ -55,7 +55,7 @@ def random_connection():
if not departures:
continue
if config['random'] is False:
if not config['random']:
dep = random.choice(departures)
else:
dep = departures[0]