Merge pull request #750 from fryguy503/master2

Fixing incorrect operator so Appveyor will pass.
This commit is contained in:
Michael Cook (mackal) 2018-07-21 17:06:03 -04:00 committed by GitHub
commit 2013063928
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -513,7 +513,7 @@ void Client::AddEXP(uint32 in_add_exp, uint8 conlevel, bool resexp) {
}
// AA Sanity Checking for players who set aa exp and deleveled below allowed aa level.
if (GetLevel() <= 50 and m_epp.perAA > 0) {
if (GetLevel() <= 50 && m_epp.perAA > 0) {
Message(15, "You are below the level allowed to gain AA Experience. AA Experience set to 0%");
aaexp = 0;
m_epp.perAA = 0;