diff --git a/Compression.BSA/BA2Reader.cs b/Compression.BSA/BA2Reader.cs index 102d5211..1f00f7ef 100644 --- a/Compression.BSA/BA2Reader.cs +++ b/Compression.BSA/BA2Reader.cs @@ -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); diff --git a/Wabbajack.Lib/ModListRegistry/ModListMetadata.cs b/Wabbajack.Lib/ModListRegistry/ModListMetadata.cs index 0e558ba7..9604ded5 100644 --- a/Wabbajack.Lib/ModListRegistry/ModListMetadata.cs +++ b/Wabbajack.Lib/ModListRegistry/ModListMetadata.cs @@ -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; }