bad std::string replacement

This commit is contained in:
Tropical 2026-03-22 14:01:52 -05:00
parent 2005b23133
commit 547a3f3962

View file

@ -359,10 +359,10 @@ std::vector<HtmlString>* IUIScene_BeaconMenu::GetSectionHoverText(
desc = new std::vector<HtmlString>(); desc = new std::vector<HtmlString>();
HtmlString std::string( HtmlString string(
app.GetString(MobEffect::effects[effectId]->getDescriptionId()), app.GetString(MobEffect::effects[effectId]->getDescriptionId()),
eHTMLColor_White); eHTMLColor_White);
desc->push_back(std::string); desc->push_back(string);
} break; } break;
} }
return desc; return desc;