From 72b234c84fc23bb57ed738b5496273b1fd23210d Mon Sep 17 00:00:00 2001 From: snowleo Date: Mon, 4 Apr 2011 14:40:16 +0000 Subject: [PATCH] [trunk] Unlimited: List unlimited items with /unlimited list git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1120 e251c2fe-e539-e718-e476-b85c1f46cddb --- .../src/com/earth2me/essentials/commands/Commandunlimited.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandunlimited.java b/Essentials/src/com/earth2me/essentials/commands/Commandunlimited.java index 8ea13a786..682806700 100644 --- a/Essentials/src/com/earth2me/essentials/commands/Commandunlimited.java +++ b/Essentials/src/com/earth2me/essentials/commands/Commandunlimited.java @@ -39,7 +39,7 @@ public class Commandunlimited extends EssentialsCommand for (Integer integer : target.getUnlimited()) { if (!first) { sb.append(", "); - first = true; + first = false; } String matname = Material.getMaterial(integer).toString().toLowerCase().replace("_", "-"); sb.append(matname);