mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-30 04:13:40 +01:00
feat: CompanyTag field on PlayerCharacter
This commit is contained in:
parent
5f1ce6bfab
commit
b5b9e6d8e1
3 changed files with 16 additions and 3 deletions
|
|
@ -95,7 +95,10 @@ namespace Dalamud.Interface
|
|||
if (actor is Chara chara)
|
||||
stateString +=
|
||||
$" Level: {chara.Level} ClassJob: {chara.ClassJob.GameData.Name} CHP: {chara.CurrentHp} MHP: {chara.MaxHp} CMP: {chara.CurrentMp} MMP: {chara.MaxMp}\n";
|
||||
;
|
||||
|
||||
if (actor is PlayerCharacter pc)
|
||||
stateString +=
|
||||
$" HomeWorld: {pc.HomeWorld.GameData.Name} CurrentWorld: {pc.CurrentWorld.GameData.Name} FC: {pc.CompanyTag}\n";
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue