default tab completion + plot chat for merged plots

This commit is contained in:
Jesse Boyd
2016-03-28 22:52:22 +11:00
parent b6bdb02fa2
commit dcd1a50a0c
4 changed files with 30 additions and 5 deletions

View File

@ -55,7 +55,7 @@ public class SpongeCommand implements CommandCallable {
for (Object o : objects) {
result.add(o.toString());
}
return result;
return result.size() == 0 ? null : result;
}
@Override