From 5b5622b4a76523b6a7a794654b1a7cfd2f967ea3 Mon Sep 17 00:00:00 2001 From: CocoTheOwner Date: Sat, 14 Aug 2021 15:35:42 +0200 Subject: [PATCH] Polish --- .../com/volmit/iris/core/decrees/DecreeStudioExtension.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/volmit/iris/core/decrees/DecreeStudioExtension.java b/src/main/java/com/volmit/iris/core/decrees/DecreeStudioExtension.java index 09c9e691c..cb03f78cd 100644 --- a/src/main/java/com/volmit/iris/core/decrees/DecreeStudioExtension.java +++ b/src/main/java/com/volmit/iris/core/decrees/DecreeStudioExtension.java @@ -18,11 +18,11 @@ public interface DecreeStudioExtension extends DecreeExecutor { } /** - * @return true if no studio is open & the player + * @return true if no studio is open or the player is not in one */ default boolean noStudio(){ if (!sender().isPlayer()){ - error("Players only (this is a config error. Ask support to add DecreeOrigin.PLAYER)"); + error("Players only (this is a config error. Ask support to add DecreeOrigin.PLAYER to the command you tried to run)"); return true; } if (!Iris.proj.isProjectOpen()){