mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
Fix task priority script for display name split.
`name` was split into an ID and a display name a while back, but this was never updated to account for that.
This commit is contained in:
parent
bf8a07fe15
commit
b42a8c78d1
@ -400,7 +400,7 @@ def dump_task_priorities() -> None:
|
||||
data: dict[str, dict[str, int]] = {}
|
||||
for task in FlightType:
|
||||
data[task.value] = {
|
||||
a.name: a.task_priority(task)
|
||||
a.display_name: a.task_priority(task)
|
||||
for a in AircraftType.priority_list_for_task(task)
|
||||
}
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user