#
# file:: cmd_who.rb
# author:: Jon A. Lambert
# version:: 2.3.0
# date:: 08/31/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
# shows a list of all connected characters
def cmd_who(args)
sendto("=== Who List ===")
world.connected_characters.each {|pid| sendto(get_object(pid).name)}
end
end