From 00854e2ea7cf492525b4ac3f6f744d2565625c45 Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Tue, 9 Mar 2021 23:26:40 +0100 Subject: [PATCH] Reduce blindess duration --- src/main/java/com/volmit/iris/manager/IrisProject.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/volmit/iris/manager/IrisProject.java b/src/main/java/com/volmit/iris/manager/IrisProject.java index 4396a2e24..919ca6c24 100644 --- a/src/main/java/com/volmit/iris/manager/IrisProject.java +++ b/src/main/java/com/volmit/iris/manager/IrisProject.java @@ -63,7 +63,7 @@ public class IrisProject return; } else if(sender.isPlayer()){ sender.player().setGameMode(GameMode.SPECTATOR); - sender.player().addPotionEffect(new PotionEffect(PotionEffectType.BLINDNESS, 2000, 10)); + sender.player().addPotionEffect(new PotionEffect(PotionEffectType.BLINDNESS, 500, 10)); sender.player().spigot().sendMessage(ChatMessageType.ACTION_BAR, TextComponent.fromLegacyText(C.BLUE + "Creating studio world. Please wait...")); }