// hasTiedThingsThatDragOnTravel.js
(function () {
/* global AdventureJS A */
var p = AdventureJS.Assets.Tangible.prototype;
/**
* Check if player is holding a rope, or tied by a rope, that
* is tied at the other end to an asset that can travel with player.
* Returns a boolean indicating whether any asset meets this qualification.
* @memberOf AdventureJS.Assets.Tangible
* @method AdventureJS.Assets.Tangible#hasTiedThingsThatDragOnTravel
* @return {Boolean}
*/
p.hasTiedThingsThatDragOnTravel =
function Tangible_hasTiedThingsThatDragOnTravel() {
return this.getTiedThingsThatDragOnTravel().length > 0 ? true : false;
};
})();