Fix wrong init value for GameModel.is_ownfor

This commit is contained in:
Raffson
2024-05-19 12:05:13 +02:00
parent 2ad3bff988
commit 3a46bdcd1e

View File

@@ -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()