Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Commit

Permalink
fix: changed high-end error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
ArchiDog1998 committed May 2, 2023
1 parent 2d2907c commit 0d74a6c
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions RotationSolver/Updaters/SocialUpdater.cs
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,16 @@ static void DutyState_DutyStarted(object sender, ushort e)

Service.ChatGui.PrintChat(new Dalamud.Game.Text.XivChatEntry()
{
Message = message,
Type = Dalamud.Game.Text.XivChatType.ErrorMessage,
Message = new SeString(
new IconPayload(BitmapFontIcon.DPS),
RotationSolverPlugin.LinkPayload,
new UIForegroundPayload(31),
new TextPayload("Rotation Solver"),
UIForegroundPayload.UIForegroundOff,
RawPayload.LinkTerminator,

new TextPayload(": " + message)),
Type = Dalamud.Game.Text.XivChatType.ErrorMessage,
});

Task.Run(async() =>
Expand Down

0 comments on commit 0d74a6c

Please sign in to comment.