diff --git a/Stickers/Properties/AssemblyInfo.cs b/Stickers/Properties/AssemblyInfo.cs index bfd8006..818da71 100644 --- a/Stickers/Properties/AssemblyInfo.cs +++ b/Stickers/Properties/AssemblyInfo.cs @@ -27,6 +27,6 @@ using System.Reflection; namespace NAK.Stickers.Properties; internal static class AssemblyInfoParams { - public const string Version = "1.0.3"; + public const string Version = "1.0.4"; public const string Author = "NotAKidoS"; } \ No newline at end of file diff --git a/Stickers/Stickers/StickerData.cs b/Stickers/Stickers/StickerData.cs index 9c1e510..c2bed17 100644 --- a/Stickers/Stickers/StickerData.cs +++ b/Stickers/Stickers/StickerData.cs @@ -196,6 +196,7 @@ namespace NAK.Stickers { foreach (Material material in _materials) { + if (material == null) continue; Color color = material.color; color.a = alpha; material.color = color;