forked from Fascinated/Bat
add checks for some events to see if the feature is enabled and more cleanup
This commit is contained in:
@ -222,7 +222,7 @@ public class CommandService extends ListenerAdapter {
|
||||
|
||||
if (guild != null) {
|
||||
FeatureProfile featureProfile = guild.getFeatureProfile();
|
||||
if (featureProfile.getFeatureState(command.getFeature()) == FeatureProfile.FeatureState.DISABLED) {
|
||||
if (featureProfile.isFeatureDisabled(command.getFeature())) {
|
||||
event.replyEmbeds(EmbedUtils.errorEmbed()
|
||||
.setDescription("The feature `%s` is disabled in this guild".formatted(command.getFeature().getName()))
|
||||
.build()).setEphemeral(true).queue();
|
||||
|
@ -70,6 +70,17 @@ public class FeatureService {
|
||||
return features.get(name.toLowerCase());
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets a feature by class
|
||||
*
|
||||
* @param clazz The class of the feature
|
||||
* @return The feature
|
||||
*/
|
||||
public <T extends Feature> T getFeature(Class<T> clazz) {
|
||||
Feature feature = features.values().stream().filter(featureClazz -> featureClazz.getClass().equals(clazz)).findFirst().orElse(null);
|
||||
return clazz.cast(feature);
|
||||
}
|
||||
|
||||
/**
|
||||
* Checks if a feature is registered
|
||||
*
|
||||
|
Reference in New Issue
Block a user