diff options
author | Michael Smith <mikesmiffy128@gmail.com> | 2023-06-10 17:01:56 +0100 |
---|---|---|
committer | Michael Smith <mikesmiffy128@gmail.com> | 2023-06-10 17:01:56 +0100 |
commit | f84d44d2a9139f3c5b58d7875bc5ef0d94881008 (patch) | |
tree | 7f885b63de3b077514063cde275db1a4750ec359 /src/alias.c | |
parent | 1c4318331663b152b0b298bd2c9e5c971506a86b (diff) |
Remove some paranoia about missing commands
There's absolutely no reason these ever wouldn't be there.
Diffstat (limited to 'src/alias.c')
-rw-r--r-- | src/alias.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/alias.c b/src/alias.c index c660367..6af7467 100644 --- a/src/alias.c +++ b/src/alias.c @@ -94,10 +94,6 @@ INIT { if (GAMETYPE_MATCHES(Portal2)) return false; struct con_cmd *cmd_alias = con_findcmd("alias"); - if (!cmd_alias) { - errmsg_warnx("couldn't find \"alias\" command"); - return false; - } if (!find_alias_head(con_getcmdcb(cmd_alias))) { errmsg_warnx("couldn't find alias list"); return false; |