= Benchmark subsystem formatting update

This commit is contained in:
Matthew Cech
2019-06-19 20:03:16 -07:00
parent 2a2b46a507
commit 51e40610a2
61 changed files with 172 additions and 172 deletions
+2 -2
View File
@@ -27,12 +27,12 @@ public class CommandGuildRoleAllowed extends Command
role = roles[i].trim();
if(guild.roleList.contains(role))
{
res.Call(LocStrings.stub("GuildRoleAllowedDuplicate"));
res.call(LocStrings.stub("GuildRoleAllowedDuplicate"));
}
else
{
guild.roleList.add(role);
res.Call(String.format(LocStrings.stub("GuildRoleAllowedSuccess"), role));
res.call(String.format(LocStrings.stub("GuildRoleAllowedSuccess"), role));
}
}
}