diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-03-01 01:44:59 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-03-01 01:44:59 +0300 |
commit | f1e7947192d72d1807eb0497756a5d09c91a1766 (patch) | |
tree | e2dd1009896eef8db89874fea2d7146f1b8e0665 /src/net | |
parent | 22736fba8a8dea5aa254e57db82c76d022718af0 (diff) | |
download | plus-f1e7947192d72d1807eb0497756a5d09c91a1766.tar.gz plus-f1e7947192d72d1807eb0497756a5d09c91a1766.tar.bz2 plus-f1e7947192d72d1807eb0497756a5d09c91a1766.tar.xz plus-f1e7947192d72d1807eb0497756a5d09c91a1766.zip |
Fix weight dialogs sound effect.
Diffstat (limited to 'src/net')
-rw-r--r-- | src/net/ea/playerhandler.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/net/ea/playerhandler.cpp b/src/net/ea/playerhandler.cpp index df28b4c1c..a0cddc219 100644 --- a/src/net/ea/playerhandler.cpp +++ b/src/net/ea/playerhandler.cpp @@ -342,7 +342,7 @@ void PlayerHandler::processPlayerStatUpdate1(Net::MessageIn &msg) weightNotice = new OkDialog(_("Message"), _("You are carrying more than " "half your weight. You are " - "unable to regain health."), DIALOG_ERROR, false); + "unable to regain health."), DIALOG_OK, false); weightNotice->addActionListener( &weightListener); } @@ -352,7 +352,7 @@ void PlayerHandler::processPlayerStatUpdate1(Net::MessageIn &msg) weightNotice = new OkDialog(_("Message"), _("You are carrying less than " "half your weight. You " - "can regain health."), DIALOG_ERROR, false); + "can regain health."), DIALOG_OK, false); weightNotice->addActionListener( &weightListener); } |