Skip to content

Commit 0878840

Browse files
committed
Add Eyezor to replacement spawns
1 parent 01f002d commit 0878840

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

src/main/java/de/ellpeck/nyx/config/NyxConfig.java

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,9 @@ public static class BloodMoon {
198198

199199
@Config.Name("Replacement Spawns")
200200
@Config.Comment({"The registry names of entities that should replace other entities during the event", "Syntax: originalEntity;replacementEntity"})
201-
public String[] spawnsReplacement = new String[]{};
201+
public String[] spawnsReplacement = new String[]{
202+
"minecraft:zombie;nyx:eyezor"
203+
};
202204
}
203205

204206
public static class BlueMoon {
@@ -352,7 +354,9 @@ public static class StarShower {
352354

353355
@Config.Name("Replacement Spawns")
354356
@Config.Comment({"The registry names of entities that should replace other entities during the event", "Syntax: originalEntity;replacementEntity"})
355-
public String[] spawnsReplacement = new String[]{};
357+
public String[] spawnsReplacement = new String[]{
358+
"minecraft:zombie;nyx:eyezor"
359+
};
356360
}
357361
}
358362

@@ -417,7 +421,9 @@ public static class GrimEclipse {
417421

418422
@Config.Name("Replacement Spawns")
419423
@Config.Comment({"The registry names of entities that should replace other entities during the event", "Syntax: originalEntity;replacementEntity"})
420-
public String[] spawnsReplacement = new String[]{};
424+
public String[] spawnsReplacement = new String[]{
425+
"minecraft:zombie;nyx:eyezor"
426+
};
421427
}
422428

423429
public static class RedGiant {

0 commit comments

Comments
 (0)