mirror of
https://github.com/dcs-retribution/dcs-retribution.git
synced 2025-11-10 15:41:24 +00:00
Removed always True "event successful" Add `AirWarEvent` as the primary game `Event` applied to every miz Cleanup of `FrontLineAttackEvent` Change `Operation.is_awacs_enabled` to two bools for each side red/blue Currently controlled by whether an AWACs is available for the faction (and only ever true for Blue)
15 lines
295 B
Python
15 lines
295 B
Python
from __future__ import annotations
|
|
from typing import TYPE_CHECKING
|
|
|
|
from .event import Event
|
|
|
|
if TYPE_CHECKING:
|
|
from game.theater import ConflictTheater
|
|
|
|
|
|
class AirWarEvent(Event):
|
|
"""An Event centered on the overall Air War"""
|
|
|
|
def __str__(self):
|
|
return "Frontline attack"
|