= Benchmark subsystem formatting update
This commit is contained in:
@@ -17,7 +17,7 @@ public class CommandGuildRoleList extends Command
|
||||
String roles = "";
|
||||
if(guild.roleList.isEmpty())
|
||||
{
|
||||
res.Call(String.format(LocStrings.stub("GuildRoleListEmpty")));
|
||||
res.call(String.format(LocStrings.stub("GuildRoleListEmpty")));
|
||||
return;
|
||||
}
|
||||
for(int i = 0; i < guild.roleList.size(); i++)
|
||||
@@ -26,6 +26,6 @@ public class CommandGuildRoleList extends Command
|
||||
roles += " and ";
|
||||
roles += guild.roleList.get(i);
|
||||
}
|
||||
res.Call(String.format(LocStrings.stub("GuildRoleListOutput"), roles));
|
||||
res.call(String.format(LocStrings.stub("GuildRoleListOutput"), roles));
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user