= Updated response method naming and formatting

This commit is contained in:
Matthew Cech
2019-06-19 21:17:08 -07:00
parent c7ad59b755
commit b0292666c0
63 changed files with 149 additions and 145 deletions
+1 -1
View File
@@ -71,7 +71,7 @@ public class RPManager
{
reminder += " <@" + users.get(i) + ">";
}
res.CallToChannel(reminder, entry.getValue().getChannel().uniqueID);
res.sendToChannel(reminder, entry.getValue().getChannel().uniqueID);
reminder = "";
entry.getValue().resetTimer();
+2 -2
View File
@@ -33,8 +33,8 @@ public class BenchmarkFormattable
public void call(Response res)
{
if(resEmbed == null)
res.call(resString);
res.send(resString);
else
res.callEmbed(resEmbed);
res.send(resEmbed);
}
}