-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
+ ArtPinning Module + AutoArtPinning Toggle (Requires ArtPinning to be true) + Art Channel # ArtPinning allows users to attach a 📌reaction to an image post and this will then pin the post saving up to the 25 most recent posts. # AutoArtPinning means that any message sent to the art channel is automatically pinned. * fixed a bug preventing the shitpost channel warning from showing up. * Status will now display "Recovered from Crash" if the autorecover feature is activated for 30 mins and will then return to normal. + added total cc count to UserInfo command. + added tag <repError>{ReplaceWith}
- Loading branch information
1 parent
bf011d9
commit 228fe9a
Showing
37 changed files
with
896 additions
and
544 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
package ChannelSettings.Types; | ||
|
||
import Interfaces.ChannelSetting; | ||
import Interfaces.Command; | ||
|
||
/** | ||
* Created by Vaerys on 12/05/2017. | ||
*/ | ||
public class Art implements ChannelSetting { | ||
@Override | ||
public String type() { | ||
return Command.CHANNEL_ART; | ||
} | ||
|
||
@Override | ||
public boolean isSetting() { | ||
return false; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
package Commands.Admin; | ||
|
||
import Commands.CommandObject; | ||
import Interfaces.Command; | ||
import Main.Constants; | ||
import Main.Utility; | ||
import Objects.SplitFirstObject; | ||
import sx.blah.discord.handle.obj.Permissions; | ||
|
||
/** | ||
* Created by Vaerys on 11/05/2017. | ||
*/ | ||
public class RewardRole implements Command{ | ||
@Override | ||
public String execute(String args, CommandObject command) { | ||
SplitFirstObject split = new SplitFirstObject(args); | ||
return "in Development."; | ||
} | ||
|
||
@Override | ||
public String[] names() { | ||
return new String[]{"RewardRole"}; | ||
} | ||
|
||
@Override | ||
public String description() { | ||
return "Adds or removes a reward role."; | ||
} | ||
|
||
@Override | ||
public String usage() { | ||
return "[Level] [RoleName] **or** [RoleName] **to remove.**" + spacer; | ||
} | ||
|
||
@Override | ||
public String type() { | ||
return TYPE_ADMIN; | ||
} | ||
|
||
@Override | ||
public String channel() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public Permissions[] perms() { | ||
return new Permissions[0]; | ||
} | ||
|
||
@Override | ||
public boolean requiresArgs() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public boolean doAdminLogging() { | ||
return false; | ||
} | ||
|
||
@Override | ||
public String dualDescription() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public String dualUsage() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public String dualType() { | ||
return null; | ||
} | ||
|
||
@Override | ||
public Permissions[] dualPerms() { | ||
return new Permissions[0]; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.