All checks were successful
KnarCraft/DynmapCitizens/pipeline/head This commit looks good
22 lines
488 B
Java
22 lines
488 B
Java
package net.knarcraft.dynmapcitizens.settings;
|
|
|
|
import org.bukkit.configuration.file.FileConfiguration;
|
|
import org.jetbrains.annotations.NotNull;
|
|
|
|
/**
|
|
* All settings for the minstrel trait
|
|
*/
|
|
public class DTLTradersSettings extends AbstractTraitSettings {
|
|
|
|
@Override
|
|
public void load(@NotNull FileConfiguration configuration) {
|
|
super.load(configuration);
|
|
}
|
|
|
|
@Override
|
|
protected @NotNull String getTraitConfigRoot() {
|
|
return "traits.trader";
|
|
}
|
|
|
|
}
|