mirror of
https://github.com/kwsch/PKHeX.git
synced 2026-05-06 05:27:14 -05:00
Update eventflagmax for e/frlg
globals.h defines as 288 bytes for RS, and 300 for E & FR respectively verified event const vals for Emerald making sense
This commit is contained in:
parent
816c40429b
commit
ae04218c5f
|
|
@ -208,7 +208,7 @@ protected override byte[] Write(bool DSV)
|
|||
public override int OTLength => 7;
|
||||
public override int NickLength => 10;
|
||||
public override int MaxMoney => 999999;
|
||||
protected override int EventFlagMax => EventFlag > 0 ? 0x900 : int.MinValue;
|
||||
protected override int EventFlagMax => 8 * (RS ? 288 : 300); // 0x900 RS, else 0x960
|
||||
protected override int EventConstMax => EventConst > 0 ? 0x100 : int.MinValue;
|
||||
|
||||
public override bool HasParty => true;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user