We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79078e8 commit d92a4e9Copy full SHA for d92a4e9
1 file changed
src/BPEssentials/Commands/Moderation/Info.cs
@@ -62,7 +62,7 @@ private StringBuilder GetOfflineInfo(User target)
62
63
.Append(" - Apartments: ").Append(target.Character.Apartments.Count).Append(", Indexes: ").Append(string.Join(", ", target.Character.Apartments.Select(x => x.Index)))
64
.Append(" - Wearables: ").AppendLine(string.Join("\n - ", target.Character.Wearables))
65
- .Append(" - Items: ").AppendLine(string.Join("\n - ", target.Character.Items.Select(x => x.Key + ": " + Core.Instance.EntityHandler.Items.FirstOrDefault(search => search.Value.index == x.Value).Value.item)))
+ .Append(" - Items: ").AppendLine(string.Join("\n - ", target.Character.Items.Select(x => x.Key + ": " + Core.Instance.EntityHandler.Items.FirstOrDefault(search => search.Value.index == x.Value).Value.itemName)))
66
67
.AppendLine(" - Job: ")
68
.Append(" - Index: ").AppendLine(target.Character.Job.JobIndex.ToString())
0 commit comments