Simplified names in BSA2Reader nad ModListMetadata

This commit is contained in:
erri120 2019-11-21 16:06:17 +01:00
parent 1b26063773
commit 8342f00a53
No known key found for this signature in database
GPG Key ID: A8C0A18D8D4D3135
2 changed files with 2 additions and 2 deletions

View File

@ -294,7 +294,7 @@ namespace Compression.BSA
ddsHeader.dwPitchOrLinearSize = (uint)(_width * _height); // 8bpp
break;
default:
throw new Exception("Unsupported DDS header format. File: " + this.FullPath);
throw new Exception("Unsupported DDS header format. File: " + FullPath);
}
bw.Write((uint)DDS.DDS_MAGIC);

View File

@ -22,7 +22,7 @@ namespace Wabbajack.Lib.ModListRegistry
[JsonProperty("game")]
public Game Game { get; set; }
[JsonIgnore] public string GameName => this.Game.ToDescriptionString();
[JsonIgnore] public string GameName => Game.ToDescriptionString();
[JsonProperty("official")]
public bool Official { get; set; }