add removed commands to Deprecated commands list and processing

This commit is contained in:
Axel Kohlmeyer
2021-02-23 09:36:20 -05:00
parent 293ebad98f
commit 8c9e9fa9ee
3 changed files with 9 additions and 1 deletions

View File

@ -36,6 +36,9 @@ void Deprecated::command(int /* narg */, char ** /* arg */)
} else if (cmd == "reset_ids") {
if (lmp->comm->me == 0)
utils::logmesg(lmp,"\n'reset_ids' has been renamed to 'reset_atom_ids'\n\n");
} else if (utils::strmatch(cmd,"^kim_")) {
if (lmp->comm->me == 0)
utils::logmesg(lmp,"\n'kim_<command>' has been renamed to 'kim <command>'\n\n");
}
error->all(FLERR,"This command is no longer available");
}