mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Update RaidSpawnList8.cs
This commit is contained in:
parent
4d47e4ab83
commit
7f1039d155
1 changed files with 2 additions and 2 deletions
|
@ -28,7 +28,7 @@ namespace PKHeX.Core
|
|||
if (i == 16) // Watchtower, special
|
||||
continue;
|
||||
var star = (byte)rnd.Next(0, 5);
|
||||
var rand = (byte)rnd.Next(0, 100);
|
||||
var rand = (byte)rnd.Next(1, 101);
|
||||
GetRaid(i).Activate(star, rand, rare, isEvent);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue