Custom now being custom not custom eu

This commit is contained in:
NicoAICP 2020-06-28 20:58:09 +02:00
parent 69aabe2be0
commit 07ac84df9b

View file

@ -2013,7 +2013,15 @@ namespace UWUVCI_AIO_WPF
lGameBasesString.Clear();
foreach(GameBases gb in LBases)
{
LGameBasesString.Add($"{gb.Name} {gb.Region}");
if(gb.Name == "Custom")
{
LGameBasesString.Add($"{gb.Name}");
}
else
{
LGameBasesString.Add($"{gb.Name} {gb.Region}");
}
}
}