| 646 | } |
| 647 | |
| 648 | std::string Game_Actor::GetNextExpString(bool status_scene) const { |
| 649 | if (GetNextExp() == -1) { |
| 650 | return (MaxExpValue() >= 1000000 || status_scene) ? "-------" : "------"; |
| 651 | } |
| 652 | return std::to_string(GetNextExp()); |
| 653 | } |
| 654 | |
| 655 | int Game_Actor::GetBaseExp() const { |
| 656 | return GetBaseExp(GetLevel()); |
no outgoing calls
no test coverage detected