9
0
mirror of https://github.com/BX-Team/DivineMC.git synced 2025-12-22 08:19:19 +00:00

Updated Upstream (Purpur)

Upstream has released updates that appear to apply and compile correctly

Purpur Changes:
PurpurMC/Purpur@4fd4df07 Updated Upstream (Paper)
This commit is contained in:
NONPLAYT
2025-08-13 03:01:28 +03:00
parent 9c70a7da66
commit e256b99586
2 changed files with 9 additions and 2 deletions

View File

@@ -24,6 +24,7 @@ import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import java.util.Locale;
import java.util.Random;
@@ -379,7 +380,13 @@ public class DivineConfig {
public static int dabMaximumActivationFrequency = 20;
public static int dabActivationDistanceMod = 8;
public static boolean dabDontEnableIfInWater = false;
public static List<String> dabBlackedEntities = new ArrayList<>();
public static List<String> dabBlackedEntities = new ArrayList<>(Arrays.asList(
"villager",
"axolotl",
"hoglin",
"zombified_piglin",
"goat"
));
// Virtual threads
public static boolean virtualThreadsEnabled = false;