summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-03-01 01:44:59 +0300
committerAndrei Karas <akaras@inbox.ru>2012-03-01 01:44:59 +0300
commitf1e7947192d72d1807eb0497756a5d09c91a1766 (patch)
treee2dd1009896eef8db89874fea2d7146f1b8e0665
parent22736fba8a8dea5aa254e57db82c76d022718af0 (diff)
downloadplus-f1e7947192d72d1807eb0497756a5d09c91a1766.tar.gz
plus-f1e7947192d72d1807eb0497756a5d09c91a1766.tar.bz2
plus-f1e7947192d72d1807eb0497756a5d09c91a1766.tar.xz
plus-f1e7947192d72d1807eb0497756a5d09c91a1766.zip
Fix weight dialogs sound effect.
-rw-r--r--src/net/ea/playerhandler.cpp4
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);
}