Added .rip command again :^)
This commit is contained in:
@ -27,6 +27,9 @@ namespace NadekoBot.Core.Services.Impl
|
||||
|
||||
private const string _xpCardPath = _basePath + "xp/xp.png";
|
||||
|
||||
private const string _ripPath = _basePath + "rip/rip.png";
|
||||
private const string _ripFlowersPath = _basePath + "rip/rose_overlay.png";
|
||||
|
||||
|
||||
public ImmutableArray<byte> Heads { get; private set; }
|
||||
public ImmutableArray<byte> Tails { get; private set; }
|
||||
@ -44,6 +47,9 @@ namespace NadekoBot.Core.Services.Impl
|
||||
|
||||
public ImmutableArray<byte> XpCard { get; private set; }
|
||||
|
||||
public ImmutableArray<byte> Rip { get; private set; }
|
||||
public ImmutableArray<byte> FlowerCircle { get; private set; }
|
||||
|
||||
public ImagesService()
|
||||
{
|
||||
_log = LogManager.GetCurrentClassLogger();
|
||||
@ -82,6 +88,9 @@ namespace NadekoBot.Core.Services.Impl
|
||||
RategirlDot = File.ReadAllBytes(_rategirlDot).ToImmutableArray();
|
||||
|
||||
XpCard = File.ReadAllBytes(_xpCardPath).ToImmutableArray();
|
||||
|
||||
Rip = File.ReadAllBytes(_ripPath).ToImmutableArray();
|
||||
FlowerCircle = File.ReadAllBytes(_ripFlowersPath).ToImmutableArray();
|
||||
}
|
||||
catch (Exception ex)
|
||||
{
|
||||
|
Reference in New Issue
Block a user