From b8afb01c46123f64c5f201d430363acf91f339fb Mon Sep 17 00:00:00 2001 From: Pedro Magueija Date: Tue, 15 Sep 2020 14:58:17 +0200 Subject: [PATCH] Fix typo in CombatStance enumeration --- gen/ground_forces/combat_stance.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gen/ground_forces/combat_stance.py b/gen/ground_forces/combat_stance.py index d2247f73..604ec508 100644 --- a/gen/ground_forces/combat_stance.py +++ b/gen/ground_forces/combat_stance.py @@ -3,7 +3,7 @@ from enum import Enum class CombatStance(Enum): DEFENSIVE = 0 # Unit will adopt defensive stance with medium group of units - AGGRESIVE = 1 # Unit will attempt to make progress with medium sized group of units + AGGRESSIVE = 1 # Unit will attempt to make progress with medium sized group of units RETREAT = 2 # Unit will retreat BREAKTHROUGH = 3 # Unit will attempt a breakthrough, rushing forward very aggresively with big group of armored units, and even less armored units will move aggresively ELIMINATION = 4 # Unit will progress aggresively toward anemy units, attempting to eliminate the ennemy force