Index: AssetManager.cs =================================================================== --- AssetManager.cs (revision 2588) +++ AssetManager.cs (working copy) @@ -923,6 +923,9 @@ case AssetType.Sound: asset = new AssetSound(); break; + case AssetType.Landmark: + asset = new AssetLandmark(); + break; default: Logger.Log("Unimplemented asset type: " + type, Helpers.LogLevel.Error, Client); return null;