X-Git-Url: https://git.stg.codes/stg.git/blobdiff_plain/061f402c1baf9a2f76d8e1f6147e15d4ae304940..479d1656ef745f0bb51e0e6226b0d98cc6d6a8f1:/projects/stargazer/tariff_impl.cpp diff --git a/projects/stargazer/tariff_impl.cpp b/projects/stargazer/tariff_impl.cpp index 34590975..a3084fbc 100644 --- a/projects/stargazer/tariff_impl.cpp +++ b/projects/stargazer/tariff_impl.cpp @@ -157,7 +157,7 @@ switch (GetChangePolicy()) else return "New tariff '" + to.GetName() + "' is more expensive than current tariff '" + GetName() + "'. The policy is '" + TARIFF::ChangePolicyToString(GetChangePolicy()) + "'."; case TARIFF::TO_EXPENSIVE: - if (to.GetFee() > GetFee()) + if (to.GetFee() >= GetFee()) return ""; else return "New tariff '" + to.GetName() + "' is more cheap than current tariff '" + GetName() + "'. The policy is '" + TARIFF::ChangePolicyToString(GetChangePolicy()) + "'.";