diff --git a/Lemegeton/Core/UserInterface.cs b/Lemegeton/Core/UserInterface.cs index 7954197..2d06156 100644 --- a/Lemegeton/Core/UserInterface.cs +++ b/Lemegeton/Core/UserInterface.cs @@ -419,7 +419,7 @@ private void RenderOrderableItem(T item, int index, float x, float y) Vector2 pt = ImGui.GetCursorPos(); string text = TranslateOrderableItem(item); ISharedImmediateTexture t = RetrieveOrderableIcon(item); - IDalamudTextureWrap icon = t.GetWrapOrEmpty(); + IDalamudTextureWrap icon = t != null ? t.GetWrapOrEmpty() : null; float icospace = 0.0f; if (icon != null) { diff --git a/Lemegeton/Plugin.cs b/Lemegeton/Plugin.cs index f23d560..ccee670 100644 --- a/Lemegeton/Plugin.cs +++ b/Lemegeton/Plugin.cs @@ -55,7 +55,7 @@ public sealed class Plugin : IDalamudPlugin #else public string Name => "Lemegeton"; #endif - public string Version = "1.0.3.8"; + public string Version = "1.0.3.9"; internal class Downloadable {