#
# file:: cmd_quit.rb
# author:: Jon A. Lambert
# version:: 2.2.0
# date:: 08/29/2005
#
# This source code copyright (C) 2005 by Jon A. Lambert
# All rights reserved.
#
# Released under the terms of the TeensyMUD Public License
# See LICENSE file for additional information.
#
module Cmd
# The quit command
def cmd_quit(args)
@account.disconnect
end
end