feat: CompanyTag field on PlayerCharacter

This commit is contained in:
goat 2020-03-29 23:44:16 +09:00
parent 5f1ce6bfab
commit b5b9e6d8e1
3 changed files with 16 additions and 3 deletions

View file

@ -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";
}
}