diff --git a/XIVSlothCombo/Window/ConfigWindow.cs b/XIVSlothCombo/Window/ConfigWindow.cs
index 26d2badac..622df4621 100644
--- a/XIVSlothCombo/Window/ConfigWindow.cs
+++ b/XIVSlothCombo/Window/ConfigWindow.cs
@@ -6,6 +6,7 @@
using ImGuiNET;
using System;
using System.Collections.Generic;
+using System.IO;
using System.Linq;
using System.Numerics;
using XIVSlothCombo.Attributes;
@@ -110,7 +111,8 @@ public override void Draw()
using (var leftChild = ImRaii.Child($"###SlothLeftSide", regionSize with { Y = topLeftSideHeight }, false, ImGuiWindowFlags.NoDecoration))
{
- if (ThreadLoadImageHandler.TryGetTextureWrap(@"https://github.com/Taurenkey/XIVSlothCombo/blob/main/res/plugin/xivslothcombo.png?raw=true", out var logo))
+ var imagePath = Path.Combine(Svc.PluginInterface.AssemblyLocation.Directory?.FullName!, "images\\wrathcombo.png");
+ if (ThreadLoadImageHandler.TryGetTextureWrap(imagePath ?? "", out var logo))
{
ImGuiEx.LineCentered("###SlothLogo", () =>
{
diff --git a/XIVSlothCombo/XIVSlothCombo.csproj b/XIVSlothCombo/XIVSlothCombo.csproj
index dcdd84427..dddabafc6 100644
--- a/XIVSlothCombo/XIVSlothCombo.csproj
+++ b/XIVSlothCombo/XIVSlothCombo.csproj
@@ -54,7 +54,7 @@
-
+
diff --git a/res/plugin/wrathcombo.png b/res/plugin/wrathcombo.png
new file mode 100644
index 000000000..897b37567
Binary files /dev/null and b/res/plugin/wrathcombo.png differ
diff --git a/res/plugin/xivslothcombo.png b/res/plugin/xivslothcombo.png
deleted file mode 100644
index 01eb31a22..000000000
Binary files a/res/plugin/xivslothcombo.png and /dev/null differ