// iDidVerb.js
(function () {
/*global adventurejs A*/
var p = adventurejs.Asset.prototype;
/**
* <strong>iDidVerb</strong> is a method to check whether
* this asset was already used as an indirect objecb by the specified verb.
* <br><br>
* <strong>$iDidDo</strong> is an alias for authors.
* @memberOf adventurejs.Asset
* @method adventurejs.Asset#iDidVerb
* @param {String} verb The name of a verb.
* @param {String} ov Direct or indirect object of verb.
* @returns {Boolean}
*/
p.iDidVerb = p.$iDid = function Asset_iDidVerb(verb, ov) {
if (!ov || ov !== "iov") ov = "iov";
return this.didVerb(verb, ov);
};
})();