add leveling feature
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m5s
All checks were successful
Deploy to Dokku / docker (ubuntu-latest) (push) Successful in 1m5s
This commit is contained in:
@ -6,6 +6,8 @@ import cc.fascinated.bat.common.Serializable;
|
||||
import cc.fascinated.bat.features.FeatureProfile;
|
||||
import cc.fascinated.bat.features.birthday.profile.BirthdayProfile;
|
||||
import cc.fascinated.bat.features.counter.CounterProfile;
|
||||
import cc.fascinated.bat.features.leveling.LevelingFeature;
|
||||
import cc.fascinated.bat.features.leveling.LevelingProfile;
|
||||
import cc.fascinated.bat.features.logging.LogProfile;
|
||||
import cc.fascinated.bat.features.namehistory.profile.guild.NameHistoryProfile;
|
||||
import cc.fascinated.bat.features.reminder.ReminderProfile;
|
||||
@ -160,6 +162,15 @@ public class BatGuild extends ProfileHolder {
|
||||
return getProfile(CounterProfile.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the leveling profile
|
||||
*
|
||||
* @return the leveling profile
|
||||
*/
|
||||
public LevelingProfile getLevelingProfile() {
|
||||
return getProfile(LevelingProfile.class);
|
||||
}
|
||||
|
||||
/**
|
||||
* Saves the user
|
||||
*/
|
||||
|
Reference in New Issue
Block a user