CoralMUD-0.26/
CoralMUD-0.26/core/
CoralMUD-0.26/data/
CoralMUD-0.26/data/help/
CoralMUD-0.26/data/socials/
CoralMUD-0.26/lib/automap/
CoralMUD-0.26/lib/items/
class Player
  def cmd_snoop command_table_entry, arg


    if arg == "off"
    end

    arg.each do |person|
      if !person.socket
        next
      end
      

      person.socket.snoop = [] if !person.socket.snoop
      person.socket.snoop << WeakRef.new(self.socket)
    end
  end
end