= Format updates and color iteration

This commit is contained in:
Matthew Cech
2019-06-17 22:50:43 -07:00
parent 4eee13a359
commit e76bb6bb27
11 changed files with 85 additions and 24 deletions
+2 -2
View File
@@ -45,7 +45,7 @@ public class CommandPerish extends Command
{
try
{
filename = ImageUtils.DownloadFromURL(input.args.split(" ")[0], ".png");
filename = ImageUtils.downloadFromURL(input.args.split(" ")[0], ".png");
preProcessed = new File(filename);
}
catch(Exception e)
@@ -54,7 +54,7 @@ public class CommandPerish extends Command
if(input.mentions != null)
person = input.mentions[0];
filename = ImageUtils.DownloadFromURL(person.avatarID, ".png");
filename = ImageUtils.downloadFromURL(person.avatarID, ".png");
if(filename == null)
return;
}