mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-15 08:47:14 +00:00
Add hgss safari slot block priority bypass
allows hgss safari mons regardless of frame call (table is currently all Slot=0). may need separate handling down the road: * switch slot number to an enum for slot codes (>0 = slot number, less than -> do something else). not something im interested in right now
This commit is contained in:
parent
fbce8582c7
commit
ad5e69550e
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@
|
|||
case SlotType.Good_Rod_Safari:
|
||||
case SlotType.Super_Rod_Safari:
|
||||
case SlotType.Rock_Smash_Safari:
|
||||
return (int)(rand % 10);
|
||||
return 0; // (int)(rand % 10); /* Block Slot Priority not implemented */
|
||||
case SlotType.Headbutt:
|
||||
case SlotType.Headbutt_Special:
|
||||
return CalcSlot(ESV, K_Headbutt);
|
||||
|
|
Loading…
Reference in a new issue