mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Fix depot cloning issue
This commit is contained in:
@@ -563,8 +563,8 @@ namespace SabreTools.DatFiles
|
||||
AddExtension = this.AddExtension,
|
||||
RemoveExtension = this.RemoveExtension,
|
||||
GameName = this.GameName,
|
||||
InputDepot = this.InputDepot.Clone() as DepotInformation,
|
||||
OutputDepot = this.OutputDepot.Clone() as DepotInformation,
|
||||
InputDepot = this.InputDepot?.Clone() as DepotInformation,
|
||||
OutputDepot = this.OutputDepot?.Clone() as DepotInformation,
|
||||
};
|
||||
}
|
||||
|
||||
@@ -613,8 +613,8 @@ namespace SabreTools.DatFiles
|
||||
AddExtension = this.AddExtension,
|
||||
RemoveExtension = this.RemoveExtension,
|
||||
GameName = this.GameName,
|
||||
InputDepot = this.InputDepot.Clone() as DepotInformation,
|
||||
OutputDepot = this.OutputDepot.Clone() as DepotInformation,
|
||||
InputDepot = this.InputDepot?.Clone() as DepotInformation,
|
||||
OutputDepot = this.OutputDepot?.Clone() as DepotInformation,
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user