Hide mailbox on gc/batrev

closes #1802
This commit is contained in:
Kurt 2018-01-31 20:21:47 -08:00
parent 999427f484
commit afe16dd1a7

View File

@ -1010,7 +1010,7 @@ private void ToggleViewSubEditors(SaveFile sav)
B_OpenRTCEditor.Enabled = sav.RS || sav.E || sav.Generation == 2;
B_OpenUGSEditor.Enabled = sav.DP || sav.Pt;
B_FestivalPlaza.Enabled = sav.Generation == 7;
B_MailBox.Enabled = sav.Generation >= 2 && sav.Generation <= 5;
B_MailBox.Enabled = sav is SAV2 || sav is SAV3 || sav is SAV4 || sav is SAV5;
var slots = SL_Extra.Initialize(sav.GetExtraSlots(HaX), InitializeDragDrop);
Box.SlotPictureBoxes.AddRange(slots);