forked from liza/Questionable
Only show NameId if it isn't 0
This commit is contained in:
parent
e25e64e9cf
commit
8ab584d55e
@ -201,7 +201,7 @@ internal sealed class CreationUtilsComponent
|
||||
private unsafe void DrawTargetDetails(IGameObject target)
|
||||
{
|
||||
string nameId = string.Empty;
|
||||
if (target is ICharacter character)
|
||||
if (target is ICharacter { NameId: > 0 } character)
|
||||
nameId = $"; n={character.NameId}";
|
||||
|
||||
ImGui.Separator();
|
||||
|
Loading…
Reference in New Issue
Block a user