diff options
Diffstat (limited to 'src/gui/dialogsmanager.cpp')
-rw-r--r-- | src/gui/dialogsmanager.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/gui/dialogsmanager.cpp b/src/gui/dialogsmanager.cpp index c1ed960be..b4a3cc6ea 100644 --- a/src/gui/dialogsmanager.cpp +++ b/src/gui/dialogsmanager.cpp @@ -166,8 +166,11 @@ void DialogsManager::attributeChanged(const AttributesT id, { if (!weightNotice && config.getBoolValue("weightMsg")) { + int percent = settings.overweightPercent; + if (percent < 1) + percent = 50; const int max = PlayerInfo::getAttribute( - Attributes::MAX_WEIGHT) / 2; + Attributes::MAX_WEIGHT) * percent / 100; const int total = oldVal; if (newVal >= max && total < max) { |