Skip to content

Commit

Permalink
Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
CarbonNeuron committed Feb 10, 2021
1 parent ef2bf50 commit 2a47089
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AUCapture-WPF/Converters/HatToImage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ public object Convert(object[] values, Type targetType, object parameter, Cultur
return null;
}
var finalName = hatID + "-" + Hats[(hatID%95).ToString()];
var stream = FileCache.Hit($"https://carbun.xyz/CDN/SVGHats/{finalName}.svg");
var stream = FileCache.Hit($"https://carbun.xyz/CDN/SVG/Hats/{finalName}.svg");
return stream;
}

Expand Down
2 changes: 1 addition & 1 deletion AUCapture-WPF/Converters/PantsConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public object Convert(object[] values, Type targetType, object parameter, Cultur
}
return !alive
? null
: FileCache.Hit($"https://carbun.xyz/CDN/SVGPants/{pantID}.svg");;
: FileCache.Hit($"https://carbun.xyz/CDN/SVG/Pants/{pantID}.svg");;
}

return "";
Expand Down
2 changes: 1 addition & 1 deletion AUCapture-WPF/Converters/PetToImageConverter.cs
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ public object Convert(object[] values, Type targetType, object parameter, Cultur
}
return !alive
? null
: FileCache.Hit($"https://carbun.xyz/CDN/SVGPets/{petID}.svg");
: FileCache.Hit($"https://carbun.xyz/CDN/SVG/Pets/{petID}.svg");
//return !alive
// ? null
// : $"https://cdn.automute.us/Pets/{petID}.png";
Expand Down

0 comments on commit 2a47089

Please sign in to comment.