// getPrettyPlacePreposition.js
(function () {
/* global AdventureJS A */
var p = AdventureJS.Assets.Tangible.prototype;
/**
* Returns a printable version of the aspect id of this asset's parent
* asset. Intedned mostly for "attached" which should print as "attached to".
* @memberOf AdventureJS.Assets.Tangible
* @method AdventureJS.Assets.Tangible#getPrettyPlacePreposition
* @return {String}
*/
p.getPrettyPlacePreposition = function Tangible_getPrettyPlacePreposition() {
return this.game.dictionary.getStringLookup(
"prepositions",
this.getPlacePreposition()
);
};
})();