Updated gray level switch

This commit is contained in:
Antz 2020-02-18 22:23:06 +00:00
parent 275148ad92
commit 65054f06ad
No known key found for this signature in database
GPG key ID: 0DF907270598C85F

View file

@ -132,7 +132,19 @@ namespace MaNGOS
{
return 16;
}
return 17;
if (pl_level < 70)
{
return 17;
}
if (pl_level < 80)
{
return 18;
}
if (pl_level < 85)
{
return 19;
}
return 20;
}
inline uint32 BaseGain(uint32 pl_level, uint32 mob_level, ContentLevels content)