= Data Structures formatting update
This commit is contained in:
+1
-1
@@ -82,7 +82,7 @@ public class Main extends ListenerAdapter
|
||||
return;
|
||||
|
||||
// Track beans!
|
||||
user.ChangeBeans(1);
|
||||
user.changeBeans(1);
|
||||
|
||||
// RP logging system
|
||||
RPManager.instance.addLine(channel, user, input);
|
||||
|
||||
@@ -55,14 +55,14 @@ public class Superintendent
|
||||
|
||||
// If the guild member is the owner, give them admin role by default.
|
||||
if(event.getMember().isOwner())
|
||||
user.ChangeRole(KittyRole.Admin);
|
||||
user.changeRole(KittyRole.Admin);
|
||||
|
||||
// Give devs the dev role
|
||||
for(int i = 0; i < Ref.devIDs.length; ++i)
|
||||
{
|
||||
if(event.getAuthor().getId().equals(Ref.devIDs[i]))
|
||||
{
|
||||
user.ChangeRole(KittyRole.Dev);
|
||||
user.changeRole(KittyRole.Dev);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user