fixed wowjoke

This commit is contained in:
Master Kwoth
2016-05-19 21:39:16 +02:00
parent f8be61690d
commit c7a83aa58a
4 changed files with 19 additions and 18 deletions

View File

@@ -99,15 +99,12 @@ namespace NadekoBot.Classes.JSONModels
public bool Missing { get; set; } = false;
public string FullUrl { get; set; }
}
public class WoWJoke
public class WoWJoke
{
public string Question { get; set; }
public string Answer { get; set; }
public override string ToString()
{
return $"**{Question}**\n\n{Answer}!";
}
public override string ToString() => $"`{Question}`\n\n**{Answer}**";
}
}