refactor: unglob std::wstring

This commit is contained in:
Tropical
2026-03-06 11:50:22 -06:00
parent 41db813a6d
commit cdc08700e4
581 changed files with 2156 additions and 2154 deletions

View File

@@ -113,10 +113,10 @@ int MobEffectInstance::hashCode()
return (id & 0xff) | ( (amplifier & 0xff) << 8) | ( (duration & 0xffff) << 16);
}
wstring MobEffectInstance::toString()
std::wstring MobEffectInstance::toString()
{
wstring result = L"MobEffectInstance::toString - NON IMPLEMENTED OR LOCALISED FUNCTION";
//wstring result = "";
std::wstring result = L"MobEffectInstance::toString - NON IMPLEMENTED OR LOCALISED FUNCTION";
//std::wstring result = "";
//if (getAmplifier() > 0)
//{
// result = getDescriptionId() + " x " + (getAmplifier() + 1) + ", Duration: " + getDuration();