Include item link in chat output

pull/3/head v2.22
Liza 2023-12-24 00:22:04 +01:00
parent e240ef568f
commit b0888ba0cb
Signed by: liza
GPG Key ID: 7199F8D727D55F67
2 changed files with 6 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net7.0-windows</TargetFramework>
<Version>2.21</Version>
<Version>2.22</Version>
<LangVersion>11.0</LangVersion>
<Nullable>enable</Nullable>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>

View File

@ -1,5 +1,7 @@
using System;
using Dalamud.Game.ClientState.Objects.Types;
using Dalamud.Game.Text.SeStringHandling;
using Dalamud.Game.Text.SeStringHandling.Payloads;
using Deliveroo.GameData;
using FFXIVClientStructs.FFXIV.Component.GUI;
using LLib.GameUI;
@ -144,7 +146,9 @@ partial class DeliverooPlugin
return false;
}
_chatGui.Print($"Buying {toBuy}x {item.Name}...");
_chatGui.Print(new SeString(new TextPayload($"Buying {toBuy}x "))
.Append(SeString.CreateItemLink(item.ItemId))
.Append(new TextPayload("...")));
var selectReward = stackalloc AtkValue[]
{
new() { Type = ValueType.Int, Int = 0 },