Skip to content

Commit

Permalink
Misc consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
JustArchi committed Sep 5, 2016
1 parent e020f54 commit e6d4304
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ArchiSteamFarm/Bot.cs
Expand Up @@ -1227,7 +1227,7 @@ internal sealed class Bot : IDisposable {
}

if ((ownedGames == null) || (ownedGames.Count == 0)) {
return "<" + BotName + "> List of owned games is empty!";
return Environment.NewLine + "<" + BotName + "> List of owned games is empty!";
}

StringBuilder response = new StringBuilder();
Expand Down Expand Up @@ -1257,7 +1257,7 @@ internal sealed class Bot : IDisposable {
return response.ToString();
}

return "<" + BotName + "> Not owned yet: " + query;
return Environment.NewLine + "<" + BotName + "> Not owned yet: " + query;
}

private static async Task<string> ResponseOwns(ulong steamID, string botName, string query) {
Expand Down

0 comments on commit e6d4304

Please sign in to comment.