lay ground work for supporting thargoid combat zones

This commit is contained in:
2022-12-03 14:33:09 +01:00
parent 8d72808fbf
commit 914aa43d33
4 changed files with 65 additions and 47 deletions

View File

@@ -285,7 +285,7 @@ public partial class MainWindow : Window {
return;
}
transaction.Grade = CombatZone.DifficultyLow;
transaction.Grade = CombatZones.DifficultyLow;
RefreshView();
}
@@ -295,7 +295,7 @@ public partial class MainWindow : Window {
return;
}
transaction.Grade = CombatZone.DifficultyMedium;
transaction.Grade = CombatZones.DifficultyMedium;
RefreshView();
}
@@ -305,7 +305,7 @@ public partial class MainWindow : Window {
return;
}
transaction.Grade = CombatZone.DifficultyHigh;
transaction.Grade = CombatZones.DifficultyHigh;
RefreshView();
}
@@ -315,7 +315,7 @@ public partial class MainWindow : Window {
return;
}
transaction.Type = CombatZone.GroundCombatZone;
transaction.Type = CombatZones.GroundCombatZone;
RefreshView();
}
@@ -325,7 +325,7 @@ public partial class MainWindow : Window {
return;
}
transaction.Type = CombatZone.ShipCombatZone;
transaction.Type = CombatZones.ShipCombatZone;
RefreshView();
}