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_remove ctab, objs
    objs = [objs].flatten

    # select a set based on which could be successfully worn.
    objs.each do |obj|
      remove(obj)
    end 
    view "You remove #{peek(objs)}." + ENDL
  end
end