[DatItem] Forgot to check these

This commit is contained in:
Matt Nadareski
2017-10-06 17:42:59 -07:00
parent 27134c2f8f
commit a401cbebf4
6 changed files with 24 additions and 18 deletions

View File

@@ -61,14 +61,12 @@ namespace SabreTools.Library.Dats
public new object Clone()
{
return new Release()
Release item = new Release()
{
Name = this.Name,
Type = this.Type,
Dupe = this.Dupe,
Machine = (Machine)this.Machine.Clone(),
Supported = this.Supported,
Publisher = this.Publisher,
Infos = this.Infos,
@@ -88,6 +86,9 @@ namespace SabreTools.Library.Dats
Date = this.Date,
Default = this.Default,
};
item.CopyMachineInformation(this);
return item;
}
#endregion