Oh dear, fix already used variable name.

git-svn-id: svn+ssh://src.earth.threerings.net/narya/trunk@6099 542714f4-19e9-0310-aa3c-eee0fc999fb1
This commit is contained in:
Ray Greenwell
2010-07-19 18:08:54 +00:00
parent 353fdcd7cf
commit 73900f891d
@@ -425,8 +425,8 @@ public class ChatDirector extends BasicDirector
default:
StringBuilder buf = new StringBuilder();
for (String cmd : Sets.newTreeSet(possibleCommands.keySet())) {
buf.append(" /").append(cmd);
for (String pcmd : Sets.newTreeSet(possibleCommands.keySet())) {
buf.append(" /").append(pcmd);
}
return MessageBundle.tcompose("m.unspecific_command", buf.toString());
}