From 9a9a75dc1e7fc0fbc9ba5a756cd0e428dea2fc8c Mon Sep 17 00:00:00 2001 From: graywolf336 Date: Tue, 21 Jan 2014 18:11:46 -0600 Subject: [PATCH] Fix my comment, would have threw someone off in the future I imagine --- .../java/com/graywolf336/jail/command/commands/JailCommand.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/graywolf336/jail/command/commands/JailCommand.java b/src/main/java/com/graywolf336/jail/command/commands/JailCommand.java index 85900e3..931d9bd 100644 --- a/src/main/java/com/graywolf336/jail/command/commands/JailCommand.java +++ b/src/main/java/com/graywolf336/jail/command/commands/JailCommand.java @@ -100,7 +100,7 @@ public class JailCommand implements Command { //Check if the cell is defined, and if so check to be sure it exists. if(!params.cell().isEmpty()) { if(jm.getJail(params.jail()).getCell(params.cell()) == null) { - //There is cell by that name + //There is no cell by that name sender.sendMessage(jm.getPlugin().getJailIO().getLanguageString(LangString.NOCELL, new String[] { params.cell(), params.jail() })); return true; }else if(jm.getJail(params.jail()).getCell(params.cell()).hasPrisoner()) {