summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/commands/Commandrepair.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/com/earth2me/essentials/commands/Commandrepair.java')
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandrepair.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandrepair.java b/Essentials/src/com/earth2me/essentials/commands/Commandrepair.java
index a0a0513c2..32b4fd5ee 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandrepair.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandrepair.java
@@ -1,5 +1,6 @@
package com.earth2me.essentials.commands;
+import com.earth2me.essentials.utils.StringUtil;
import static com.earth2me.essentials.I18n._;
import com.earth2me.essentials.*;
import java.util.ArrayList;
@@ -80,7 +81,7 @@ public class Commandrepair extends EssentialsCommand
}
else
{
- user.sendMessage(_("repair", Util.joinList(repaired)));
+ user.sendMessage(_("repair", StringUtil.joinList(repaired)));
}
}