2021-09-16 01:50:44 +02:00
|
|
|
import { ITerminal } from "../ITerminal";
|
2021-09-17 08:58:02 +02:00
|
|
|
import { IRouter } from "../../ui/Router";
|
2021-09-16 01:50:44 +02:00
|
|
|
import { IPlayer } from "../../PersonObjects/IPlayer";
|
|
|
|
import { BaseServer } from "../../Server/BaseServer";
|
|
|
|
import { removeAlias } from "../../Alias";
|
|
|
|
|
|
|
|
export function unalias(
|
|
|
|
terminal: ITerminal,
|
2021-09-17 08:58:02 +02:00
|
|
|
router: IRouter,
|
2021-09-16 01:50:44 +02:00
|
|
|
player: IPlayer,
|
|
|
|
server: BaseServer,
|
2021-12-03 20:44:32 +01:00
|
|
|
args: (string | number | boolean)[],
|
2021-09-16 01:50:44 +02:00
|
|
|
): void {
|
|
|
|
if (args.length !== 1) {
|
|
|
|
terminal.error("Incorrect usage of unalias name. Usage: unalias [alias]");
|
|
|
|
return;
|
|
|
|
} else {
|
|
|
|
if (removeAlias(args[0] + "")) {
|
|
|
|
terminal.print(`Removed alias ${args[0]}`);
|
|
|
|
} else {
|
|
|
|
terminal.error(`No such alias exists: ${args[0]}`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|