Skip to content

Commit

Permalink
Fix small issue with changed item tooltips.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ottermandias committed Aug 31, 2024
1 parent 6b858dc commit 1b17404
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Penumbra/Penumbra.cs
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ private void SetupApi()
var itemSheet = _services.GetService<IDataManager>().GetExcelSheet<Item>()!;
_communicatorService.ChangedItemHover.Subscribe(it =>
{
if (it is IdentifiedItem)
if (it is IdentifiedItem { Item.Id.IsItem: true })
ImGui.TextUnformatted("Left Click to create an item link in chat.");
}, ChangedItemHover.Priority.Link);

Expand Down

0 comments on commit 1b17404

Please sign in to comment.