I went down through the list and couldnt see the section to remove Gold at the end of the cost.. can you please take a screenshot of the line to edit so i can do a CTRL+F search for the exact line please?
Thanks!
Viewing post in [CGMZ] Fast Travel for RPG Maker MZ comments
Change this:
if(this._item._goldCost > 0) { this.drawText(this._item._goldCost + TextManager.currencyUnit, 0, y, this.contents.width, 'center'); y += this.lineHeight(); }
to this:
if(this._item._goldCost > 0) { this.drawText(this._item._goldCost, 0, y, this.contents.width, 'center'); y += this.lineHeight(); }