dev.the_fireplace.mobrebirth.config.MRConfigDefaults Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Mob-Rebirth Show documentation
Show all versions of Mob-Rebirth Show documentation
A server-side Minecraft mod that allows mobs to be reborn in various ways.
package dev.the_fireplace.mobrebirth.config;
import dev.the_fireplace.annotateddi.api.di.Implementation;
import dev.the_fireplace.mobrebirth.domain.config.ConfigValues;
import javax.inject.Singleton;
@Implementation(name = "default")
@Singleton
public final class MRConfigDefaults implements ConfigValues {
@Override
public boolean getAllowBossRebirth() {
return false;
}
@Override
public boolean getAllowSlimeRebirth() {
return true;
}
@Override
public boolean getAllowAnimalRebirth() {
return true;
}
@Override
public boolean getVanillaRebirthOnly() {
return false;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy