mirror of
https://github.com/kwsch/PKHeX
synced 2024-11-14 16:27:21 +00:00
Misc clean
meh
This commit is contained in:
parent
f481404503
commit
2eef523475
4 changed files with 3 additions and 3 deletions
|
@ -7,7 +7,7 @@ namespace PKHeX.Core
|
|||
private readonly List<StorageSlotOffset> Slots = new List<StorageSlotOffset>();
|
||||
|
||||
public SlotDaycare(SaveFile sav, bool locked)
|
||||
: base(sav, (int) 2, locked)
|
||||
: base(sav, 2, locked)
|
||||
{
|
||||
ReloadDaycareSlots();
|
||||
}
|
||||
|
|
|
@ -1,5 +1,4 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using static PKHeX.Core.LegalityCheckStrings;
|
||||
|
||||
namespace PKHeX.Core
|
||||
|
|
|
@ -1081,7 +1081,7 @@ namespace PKHeX.WinForms.Controls
|
|||
}
|
||||
catch
|
||||
{
|
||||
WinFormsUtil.Error(MessageStrings.MsgClipboardFailWrite);
|
||||
WinFormsUtil.Error(MsgClipboardFailWrite);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -296,6 +296,7 @@ namespace PKHeX.WinForms
|
|||
/// Opens a dialog to save a <see cref="MysteryGift"/> file.
|
||||
/// </summary>
|
||||
/// <param name="gift"><see cref="MysteryGift"/> to be saved.</param>
|
||||
/// <param name="origin">Game the gift originates from</param>
|
||||
/// <returns>Result of whether or not the file was saved.</returns>
|
||||
public static bool SaveMGDialog(MysteryGift gift, GameVersion origin)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue