From 98c898ffeb97a7f1002ff6fee31391d48eed02e3 Mon Sep 17 00:00:00 2001 From: Ari Mudev Date: Sat, 4 Sep 2010 16:04:16 +0000 Subject: [PATCH] Add "exam" alias to examine command; it is an extremely common alias in other codebases. --- game/gamesrc/commands/default/objmanip.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/gamesrc/commands/default/objmanip.py b/game/gamesrc/commands/default/objmanip.py index 8250af0cca..c3acb496f3 100644 --- a/game/gamesrc/commands/default/objmanip.py +++ b/game/gamesrc/commands/default/objmanip.py @@ -1410,7 +1410,7 @@ class CmdExamine(ObjManipCommand): If object is not specified, the current location is examined. """ key = "examine" - aliases = ["ex"] + aliases = ["ex","exam"] permissions = "cmd:examine" help_category = "Building"