diff options
author | Yohann Ferreira <bertram@cegetel.net> | 2005-09-17 00:10:50 +0000 |
---|---|---|
committer | Yohann Ferreira <bertram@cegetel.net> | 2005-09-17 00:10:50 +0000 |
commit | e454dcd9bc48c884215bb8144f43a10960b5f713 (patch) | |
tree | 95b62bff7a51d2325ce0bf9dfc93bc481a19738f /src/gui/ministatus.cpp | |
parent | 17cab02d4f5e2137ab77bac40884982c6d3651ea (diff) | |
download | mana-e454dcd9bc48c884215bb8144f43a10960b5f713.tar.gz mana-e454dcd9bc48c884215bb8144f43a10960b5f713.tar.bz2 mana-e454dcd9bc48c884215bb8144f43a10960b5f713.tar.xz mana-e454dcd9bc48c884215bb8144f43a10960b5f713.zip |
Now the values shown by derived stats in status win are got from the server. Still, when Equipping/unequipping, you have to warp to get these values updated. Does somebody has an idea how to request an update of these values when equipping/unequipping ?
Diffstat (limited to 'src/gui/ministatus.cpp')
-rw-r--r-- | src/gui/ministatus.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/gui/ministatus.cpp b/src/gui/ministatus.cpp index 7318ba74..2d834949 100644 --- a/src/gui/ministatus.cpp +++ b/src/gui/ministatus.cpp @@ -61,13 +61,13 @@ MiniStatusWindow::~MiniStatusWindow() void MiniStatusWindow::update() { // HP Bar coloration - if (player_info->hp < int(player_info->max_hp / 3)) + if (player_info->hp < int(player_info->maxHp / 3)) { hpBar->setColor(223, 32, 32); // Red } else { - if (player_info->hp < int((player_info->max_hp / 3) * 2)) + if (player_info->hp < int((player_info->maxHp / 3) * 2)) { hpBar->setColor(230, 171, 34); // Orange } @@ -77,8 +77,8 @@ void MiniStatusWindow::update() } } - hpBar->setProgress((float)player_info->hp / (float)player_info->max_hp); - // mpBar->setProgress((float)player_info->mp / (float)player_info->max_mp); + hpBar->setProgress((float)player_info->hp / (float)player_info->maxHp); + // mpBar->setProgress((float)player_info->mp / (float)player_info->maxMp); } void MiniStatusWindow::draw(gcn::Graphics *graphics) |