1
0
mirror of synced 2025-02-20 20:51:35 +01:00

Another fix for constants

This commit is contained in:
KillzXGaming 2019-07-14 11:59:54 -04:00
parent f87264b656
commit a9d8a8f86a
2 changed files with 1 additions and 1 deletions

Binary file not shown.

View File

@ -223,7 +223,7 @@ namespace FirstPlugin
{
foreach (var texturePatternCfg in matCfg.TexturePatternInfos)
{
if (texturePatternCfg.ConstantValue == null)
if (texturePatternCfg.ConstantValue != null)
{
if (!Textures.Contains(texturePatternCfg.ConstantValue.Texture))
Textures.Add(texturePatternCfg.ConstantValue.Texture);