mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-23 04:23:12 +00:00
Add bv7 music offset
silent bgm boolean property too
This commit is contained in:
parent
f4797e06a0
commit
ddf7327bf8
1 changed files with 3 additions and 0 deletions
|
@ -50,5 +50,8 @@ namespace PKHeX.Core
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
public int MusicID { get { return Data[0x21C]; } set { Data[0x21C] = (byte)value; } }
|
||||
public bool SilentBGM { get { return MusicID == 0xFF; } set { MusicID = (byte)(value ? 0xFF : MusicID); } }
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue