Skip to content

Commit

Permalink
Core/Formulas: Implement BaseGain formula for 81-85
Browse files Browse the repository at this point in the history
Signed-off-by: AriDEV <michalik.andrej@centrum.sk>
  • Loading branch information
AriDEV committed Jun 21, 2011
1 parent ea44b9c commit b80d677
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/server/game/DataStores/DBCStores.h
Expand Up @@ -45,7 +45,8 @@ enum ContentLevels
{
CONTENT_1_60 = 0,
CONTENT_61_70,
CONTENT_71_80
CONTENT_71_80,
CONTENT_81_85
};
ContentLevels GetContentLevelsForMapAndZone(uint32 mapid, uint32 zoneId);

Expand Down
3 changes: 3 additions & 0 deletions src/server/game/Miscellaneous/Formulas.h
Expand Up @@ -126,6 +126,9 @@ namespace Trillium
case CONTENT_71_80:
nBaseExp = 580;
break;
case CONTENT_81_85:
nBaseExp = 1878;
break;
default:
sLog->outError("BaseGain: Unsupported content level %u", content);
nBaseExp = 45;
Expand Down

0 comments on commit b80d677

Please sign in to comment.