mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 20:43:07 +00:00
allow banned pokemon for BattleTreeGreat in USUM
stupid banlist removal case master still downlevels/bans
This commit is contained in:
parent
d5411f1453
commit
d834ae3ccf
1 changed files with 1 additions and 1 deletions
|
@ -255,7 +255,7 @@ namespace PKHeX.Core
|
|||
{
|
||||
if (s7.RibbonBattleRoyale)
|
||||
yield return new RibbonResult(nameof(s7.RibbonBattleRoyale));
|
||||
if (s7.RibbonBattleTreeGreat)
|
||||
if (s7.RibbonBattleTreeGreat && !(pkm.USUM || !pkm.IsUntraded))
|
||||
yield return new RibbonResult(nameof(s7.RibbonBattleTreeGreat));
|
||||
if (s7.RibbonBattleTreeMaster)
|
||||
yield return new RibbonResult(nameof(s7.RibbonBattleTreeMaster));
|
||||
|
|
Loading…
Reference in a new issue