mirror of
https://github.com/Winds-Studio/Leaf.git
synced 2025-12-25 09:59:15 +00:00
have safer dab blacklist by default (#436)
This commit is contained in:
@@ -8,6 +8,7 @@ import org.dreeam.leaf.config.EnumConfigCategory;
|
||||
import org.dreeam.leaf.config.LeafConfig;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.Locale;
|
||||
|
||||
@@ -23,7 +24,13 @@ public class DynamicActivationofBrain extends ConfigModules {
|
||||
public static int maximumActivationPrio = 20;
|
||||
public static int activationDistanceMod = 8;
|
||||
public static boolean dontEnableIfInWater = false;
|
||||
public static List<String> blackedEntities = new ArrayList<>();
|
||||
public static List<String> blackedEntities = new ArrayList<>(Arrays.asList(
|
||||
"villager",
|
||||
"axolotl",
|
||||
"hoglin",
|
||||
"zombified_piglin",
|
||||
"goat"
|
||||
));
|
||||
|
||||
@Override
|
||||
public void onLoaded() {
|
||||
|
||||
Reference in New Issue
Block a user