Noble Zarkon
Elite Quattromaster - Immortal (BTS)
Super Moderator
Hall of Fame Staff
GOTM Staff
Supporter
From thecrazyscot's mod, here are his changes to plot-tooltip.js to show (A) after the name of an ageless building.
JavaScript:
//TCS START
let ageless;
ageless = false;
for (const e of GameInfo.TypeTags) {
if (e.Tag == "AGELESS" && e.Type == info.ConstructibleType) {
ageless = true;
break;
}
}
if (ageless == true) {
buildingName = Locale.compose(info.Name) + " (A)";
}
else {
buildingName = Locale.compose(info.Name);
}
//TCS END