Fix scaling and display for cor / phr

This commit is contained in:
Akkadius
2019-06-11 15:19:27 -05:00
parent 79d8a6329c
commit 660416065e
3 changed files with 12 additions and 4 deletions
+2 -2
View File
@@ -189,11 +189,11 @@ inline std::string GetMobAttributeByString(Mob *mob, const std::string &attribut
}
if (attribute == "cor") {
return std::to_string(mob->GetCorrup());
return commify(std::to_string(mob->GetCorrup())) + scaling_modified;
}
if (attribute == "phy") {
return std::to_string(mob->GetPhR());
return commify(std::to_string(mob->GetPhR())) + scaling_modified;
}
if (attribute == "name") {