# HG changeset patch # User IBBoard # Date 1251025389 0 # Node ID fcbc3beea498e7c4c36dd14acb6493eb5582c4ec # Parent 0cdc0b07fe119850f30b7f49c44ebde017cc0687 * Change default factory behaviour to pretend it has loaded files without changing anything no-open-ticket diff -r 0cdc0b07fe11 -r fcbc3beea498 api/Factories/AbstractWarFoundryFactory.cs --- a/api/Factories/AbstractWarFoundryFactory.cs Sun Aug 23 10:32:09 2009 +0000 +++ b/api/Factories/AbstractWarFoundryFactory.cs Sun Aug 23 11:03:09 2009 +0000 @@ -13,7 +13,8 @@ { public virtual void CompleteLoading(IWarFoundryStagedLoadObject obj) { - //Default to doing nothing as this will probably be standard for non-native factories and some native factories + //Pretend we've fully loaded, as this will probably be standard for non-native factories and some native factories + obj.SetAsFullyLoaded(); } public bool CanHandleFileFormat (FileInfo file)