Don't allow abbreviating administrative commands
[mudpy.git] / mudpy / misc.py
index 501d5b4..62501d4 100644 (file)
@@ -1486,8 +1486,10 @@ def find_command(command_name):
         command = universe.groups["command"][command_name]
     else:
         for candidate in sorted(universe.groups["command"]):
-            if candidate.startswith(command_name):
-                # the command matches the start of a command word
+            if candidate.startswith(command_name) and not universe.groups[
+                    "command"][candidate].get("administrative"):
+                # the command matches the start of a command word and is not
+                # restricted to administrators
                 command = universe.groups["command"][candidate]
                 break
     return command