Implement @wipe as per MUX. NOTE: THIS REVISION REQUIRES YOU TO RE-SYNC YOUR objects_attribute TABLE. The best way to do this is to drop your attribute table and your comsys tables, then re-sync via syncdb. This was needed due to some conflicts in namespace that I didn't want to get around with disorganized work-arounds.

This commit is contained in:
Greg Taylor 2007-05-24 17:44:17 +00:00
parent 9457e19787
commit bb0ff9f6ff
3 changed files with 91 additions and 24 deletions

View file

@ -67,6 +67,7 @@ ctable = {
"@teleport": (commands_privileged.cmd_teleport, ("genperms.builder")),
"@unlink": (commands_privileged.cmd_unlink, ("genperms.builder")),
"@wall": (commands_privileged.cmd_wall, ("genperms.announce")),
"@wipe": (commands_privileged.cmd_wipe, None),
}
def return_cmdtuple(func_name, unlogged_cmd=False):