CoralMUD-0.15/
CoralMUD-0.15/core/
CoralMUD-0.15/data/
CoralMUD-0.15/data/areas/
CoralMUD-0.15/data/help/
CoralMUD-0.15/data/players/
CoralMUD-0.15/lib/automap/
CoralMUD-0.15/lib/items/
class Player
  # look up a tag of *any* object in the game space.
  def cmd_vtag cte, arg
    log :debug, arg
    tfound = Tag.find_any_obj arg

    if !tfound
      text_to_player "Nothing found." + ENDL
      return
    end

    tfound.each do |f|
      text_to_player "#{f} #{f.namespace}" + ENDL
    end
  end
end