yes i think i see the issue

This commit is contained in:
Boblet 2026-07-16 15:49:13 +02:00
parent 296d8a1d1f
commit 6f6ebffd41

View File

@ -46,7 +46,7 @@ public class BossSpawnHandler {
public static void rollTheDice(World world) { public static void rollTheDice(World world) {
/* /*
* Spawns every 3 hours with a 33% chance if * Spawns every 20 minutes if
* - the player is 3 blocks below the surface * - the player is 3 blocks below the surface
* - the player has at least 50 RAD * - the player has at least 50 RAD
* - the player has either crafted or placed an ore acidizer before * - the player has either crafted or placed an ore acidizer before
@ -70,7 +70,7 @@ public class BossSpawnHandler {
data.maskManTimer++; data.maskManTimer++;
if(data.maskManTimer == MobConfig.maskmanDelay - 20 * 60) { if(data.maskManTimer == MobConfig.maskmanDelay - 60) {
player.addChatComponentMessage(new ChatComponentText("The mask man draws near.").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.RED))); player.addChatComponentMessage(new ChatComponentText("The mask man draws near.").setChatStyle(new ChatStyle().setColor(EnumChatFormatting.RED)));
} }