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
+8
View File
@@ -2215,6 +2215,14 @@ void NPC::ModifyNPCStat(const char *identifier, const char *new_value)
CR = atoi(val.c_str());
return;
}
else if (id == "cor") {
Corrup = atoi(val.c_str());
return;
}
else if (id == "phr") {
PhR = atoi(val.c_str());
return;
}
else if (id == "pr") {
PR = atoi(val.c_str());
return;