forked from Fascinated/Bat
add name history tracking
This commit is contained in:
@ -1,6 +1,7 @@
|
||||
package cc.fascinated.bat.model;
|
||||
|
||||
import cc.fascinated.bat.common.ProfileHolder;
|
||||
import cc.fascinated.bat.features.namehistory.profile.guild.NameHistoryProfile;
|
||||
import cc.fascinated.bat.service.DiscordService;
|
||||
import lombok.*;
|
||||
import net.dv8tion.jda.api.entities.Guild;
|
||||
@ -65,6 +66,15 @@ public class BatGuild extends ProfileHolder {
|
||||
return DiscordService.JDA.getGuildById(id);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the user's name history profile
|
||||
*
|
||||
* @return the user's name history profile
|
||||
*/
|
||||
public NameHistoryProfile getNameHistoryProfile() {
|
||||
return getProfile(NameHistoryProfile.class);
|
||||
}
|
||||
|
||||
@AllArgsConstructor
|
||||
@Getter
|
||||
@Setter
|
||||
|
Reference in New Issue
Block a user