mirror of
https://github.com/mangosfour/server.git
synced 2025-12-21 19:37:02 +00:00
Updated gray level switch
This commit is contained in:
parent
275148ad92
commit
65054f06ad
1 changed files with 13 additions and 1 deletions
|
|
@ -132,8 +132,20 @@ namespace MaNGOS
|
|||
{
|
||||
return 16;
|
||||
}
|
||||
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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue