Bug: Ardia - Talk - Escape: Help text display issue

chromebastard

Member
Apr 7, 2022
5
0
30
Ardia then Talk, when hovering over the "Escape" button the help text is not displayed correctly.
Not sure if it could be a browser issue. I am using Vivaldi browser if this is relevant.
 

Attachments

  • Samus (H) - 1Hrs 9Mins, 131 Days - Zhèng Shi Station, Herisiod.json
    708 KB · Views: 5
  • HelpText_issue.png
    HelpText_issue.png
    146 KB · Views: 8

Beldona

Member
Apr 4, 2022
16
0
37
The button's tooltip header is missing, and the tooltip text is being supplied as as the header, with no tooltip text after.
follower/Ardia.js line 3705.
addButton(3,"Escape!",ardiaGetToTheChoppaIMeanShip,"You’ve freed both groups of slaves, so it’s time to get Ardia the hell out of here.");
this suggests that a problem exists with engine/interface.js at line 129
if (ttH !== undefined && ttB === undefined)
{
Log(LogCategory.UI, LogDetail.Fatal, Potential erroneous button configuration detected. Button '${text}' specifies a tooltip header '${ttH}' but no body!);
this should be triggering a fatal error as only 4 arguments are supplied when 5 should be, and the fifth argument should meet the qualification of "===undefined" but this isn't happening.