Fix certain items not displaying on quests.

This commit is contained in:
GMatrixGames
2021-05-31 16:43:06 -04:00
committed by GitHub
parent 6f63d53152
commit 9a79bd608d

View File

@@ -114,7 +114,7 @@ namespace FModel.Creator.Bases.FN
}
else if (!_unauthorizedReward.Contains(name.Text))
{
_reward = new Reward(quantity, primaryAssetName);
_reward = new Reward(quantity, $"{name}:{primaryAssetName}");
}
}
}
@@ -256,4 +256,4 @@ namespace FModel.Creator.Bases.FN
_reward.DrawQuest(c, new SKRect(Height, outY + 25, Width - 20, y + Height - 25));
}
}
}
}