Fix "plug" output width for generated-creature-renamer

develop
lethosor 2017-03-02 14:04:14 -05:00
parent 0cc51f8d69
commit 15759808e5
1 changed files with 2 additions and 2 deletions

@ -931,8 +931,8 @@ command_result Core::runCommand(color_ostream &con, const std::string &first_, v
}
else if (builtin == "plug")
{
const char *header_format = "%25s %10s %4s %8s\n";
const char *row_format = "%25s %10s %4i %8s\n";
const char *header_format = "%30s %10s %4s %8s\n";
const char *row_format = "%30s %10s %4i %8s\n";
con.print(header_format, "Name", "State", "Cmds", "Enabled");
plug_mgr->refresh();