From d2a6773522b57f36346e6991517b258013445394 Mon Sep 17 00:00:00 2001 From: graywolf336 Date: Fri, 21 Feb 2014 09:23:50 -0600 Subject: [PATCH] Fix the generation of the sign strings. --- src/main/java/com/graywolf336/jail/beans/Cell.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/graywolf336/jail/beans/Cell.java b/src/main/java/com/graywolf336/jail/beans/Cell.java index 76437de..e726035 100644 --- a/src/main/java/com/graywolf336/jail/beans/Cell.java +++ b/src/main/java/com/graywolf336/jail/beans/Cell.java @@ -81,7 +81,7 @@ public class Cell { if(r.isEmpty()) { r = s.toString(); }else { - r += r + ";" + s.toString(); + r += ";" + s.toString(); } }