mirror of
https://github.com/1dot13/source.git
synced 2026-07-22 13:40:22 +02:00
Added possibility to show rank and name on enemies (by silversurfer)
- If a name is available for the enemy, the name will be shown and if INDIVIDUAL_ENEMY_RANK = TRUE also the rank will be shown - The name will be shown if INDIVIDUAL_ENEMY_NAMES = TRUE or SOLDIER_PROFILES_ENEMY = TRUE. If both are true, then the name will be taken from the enemies profiles git-svn-id: https://ja2svn.mooo.com/source/ja2/trunk/GameSource/ja2_v1.13/Build@6236 3b4a5df2-a311-0410-b5c6-a8a6f20db521
This commit is contained in:
@@ -927,7 +927,7 @@ BOOLEAN LoadExternalGameplayData(STR directoryName)
|
||||
|
||||
|
||||
|
||||
if (gGameExternalOptions.fEnemyNames == TRUE && gGameExternalOptions.fEnemyRank == FALSE)
|
||||
if (gGameExternalOptions.fEnemyNames == TRUE)
|
||||
{
|
||||
// Enemy Names Group by Jazz
|
||||
strcpy(fileName, directoryName);
|
||||
@@ -980,7 +980,7 @@ BOOLEAN LoadExternalGameplayData(STR directoryName)
|
||||
}
|
||||
#endif
|
||||
|
||||
if (gGameExternalOptions.fEnemyNames == FALSE && gGameExternalOptions.fEnemyRank == TRUE)
|
||||
if (gGameExternalOptions.fEnemyRank == TRUE)
|
||||
{
|
||||
// Enemy Rank by Jazz
|
||||
strcpy(fileName, directoryName);
|
||||
|
||||
Reference in New Issue
Block a user