From 3a46bdcd1e776c631b0b7cadee72d9c1b4a781a4 Mon Sep 17 00:00:00 2001 From: Raffson Date: Sun, 19 May 2024 12:05:13 +0200 Subject: [PATCH] Fix wrong init value for GameModel.is_ownfor --- qt_ui/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qt_ui/models.py b/qt_ui/models.py index 2ead249d..eaa24a01 100644 --- a/qt_ui/models.py +++ b/qt_ui/models.py @@ -547,7 +547,7 @@ class GameModel: else: self.ato_model = AtoModel(self, self.game.blue.ato) self.red_ato_model = AtoModel(self, self.game.red.ato) - self.is_ownfor = False + self.is_ownfor = True # For UI purposes self.allocated_freqs: list[RadioFrequency] = list()