Skip to content

Commit

Permalink
1.0.3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
paissaheavyindustries committed Jul 9, 2024
1 parent 179c0ca commit f0c0e08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Lemegeton/Core/UserInterface.cs
Original file line number Diff line number Diff line change
Expand Up @@ -419,7 +419,7 @@ private void RenderOrderableItem<T>(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)
{
Expand Down
2 changes: 1 addition & 1 deletion Lemegeton/Plugin.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit f0c0e08

Please sign in to comment.