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
No known key found for this signature in database
GPG Key ID: B0402B2C9B764D99

View File

@ -547,7 +547,7 @@ class GameModel:
else: else:
self.ato_model = AtoModel(self, self.game.blue.ato) self.ato_model = AtoModel(self, self.game.blue.ato)
self.red_ato_model = AtoModel(self, self.game.red.ato) self.red_ato_model = AtoModel(self, self.game.red.ato)
self.is_ownfor = False self.is_ownfor = True
# For UI purposes # For UI purposes
self.allocated_freqs: list[RadioFrequency] = list() self.allocated_freqs: list[RadioFrequency] = list()