diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-07-25 19:55:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-07-25 19:55:16 +0300 |
commit | 6afbd218f72684241e34e3561c900f41a5542010 (patch) | |
tree | 82050ce2d6bb8e8ff5c7f0cfe4568fb5e49a8675 /src/net/eathena/playerhandler.cpp | |
parent | 2c1a20a6abe784ac6bcb72b9b961db6b8567bd32 (diff) | |
download | plus-6afbd218f72684241e34e3561c900f41a5542010.tar.gz plus-6afbd218f72684241e34e3561c900f41a5542010.tar.bz2 plus-6afbd218f72684241e34e3561c900f41a5542010.tar.xz plus-6afbd218f72684241e34e3561c900f41a5542010.zip |
Fix too big lines.
Diffstat (limited to 'src/net/eathena/playerhandler.cpp')
-rw-r--r-- | src/net/eathena/playerhandler.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/net/eathena/playerhandler.cpp b/src/net/eathena/playerhandler.cpp index 5b7b8baf5..b0edf5c1c 100644 --- a/src/net/eathena/playerhandler.cpp +++ b/src/net/eathena/playerhandler.cpp @@ -547,7 +547,8 @@ void PlayerHandler::setStat(Net::MessageIn &msg, if (m) { m->setHp(base); - m->setMaxHp(PlayerInfo::getAttribute(Attributes::PLAYER_MAX_HP)); + m->setMaxHp(PlayerInfo::getAttribute( + Attributes::PLAYER_MAX_HP)); } } break; @@ -629,7 +630,8 @@ void PlayerHandler::setStat(Net::MessageIn &msg, // ++ here used in wrong way. Need like Sp::NEXTBASEEXP? case Sp::NEXTJOBEXP: PlayerInfo::setStatExperience(Attributes::PLAYER_JOB, - PlayerInfo::getStatExperience(Attributes::PLAYER_JOB).first, base); + PlayerInfo::getStatExperience(Attributes::PLAYER_JOB).first, + base); break; case Sp::WEIGHT: PlayerInfo::setAttribute(Attributes::TOTAL_WEIGHT, base); |