mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 18:27:23 +01:00
Improve BattleNpcSubKind (#2010)
This adds BattleNpcSubKind.NpcPartyMember and documents BattleNpcSubKind.Enemy better.
This commit is contained in:
parent
cddad72066
commit
bd9eaed763
1 changed files with 6 additions and 1 deletions
|
|
@ -27,7 +27,12 @@ public enum BattleNpcSubKind : byte
|
||||||
Chocobo = 3,
|
Chocobo = 3,
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// BattleNpc representing a standard enemy.
|
/// BattleNpc representing a standard enemy. This includes allies (overworld guards and allies in single-player duties).
|
||||||
/// </summary>
|
/// </summary>
|
||||||
Enemy = 5,
|
Enemy = 5,
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// BattleNpc representing an NPC party member (from Duty Support, Trust, or Grand Company Command Mission).
|
||||||
|
/// </summary>
|
||||||
|
NpcPartyMember = 9,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue