summaryrefslogtreecommitdiff
path: root/src/ai/api/ai_group.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ai/api/ai_group.hpp')
-rw-r--r--src/ai/api/ai_group.hpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ai/api/ai_group.hpp b/src/ai/api/ai_group.hpp
index 84569c562..51a4c47aa 100644
--- a/src/ai/api/ai_group.hpp
+++ b/src/ai/api/ai_group.hpp
@@ -20,9 +20,9 @@ public:
*/
enum GroupID {
/* Values are important, as they represent the internal state of the game (see group_type.h). */
- ALL_GROUP = 0xFFFD, //!< All vehicles are in this group.
- DEFAULT_GROUP = 0xFFFE, //!< Vehicles not put in any other group are in this one.
- INVALID_GROUP = 0xFFFF, //!< An invalid group id.
+ GROUP_ALL = 0xFFFD, //!< All vehicles are in this group.
+ GROUP_DEFAULT = 0xFFFE, //!< Vehicles not put in any other group are in this one.
+ GROUP_INVALID = 0xFFFF, //!< An invalid group id.
};
/**