mirror of
https://github.com/SapphireServer/Sapphire.git
synced 2025-05-01 16:37:45 +00:00
fix stats breaking at level 70 due to reading past the level table
This commit is contained in:
parent
789b5dfd9e
commit
407c48fa33
1 changed files with 2 additions and 1 deletions
|
@ -13,9 +13,10 @@
|
|||
using namespace Sapphire::Math;
|
||||
using namespace Sapphire::Entity;
|
||||
|
||||
const int levelTable[70][7] =
|
||||
const int levelTable[71][7] =
|
||||
{
|
||||
// PIE, MP, MAIN,SUB,DIV,HP,ELMT,THREAT
|
||||
{ 1, 1, 1, 1, 1, 1, 1 },
|
||||
{ 50, 104, 20, 56, 56, 0, 52 },
|
||||
{ 55, 114, 21, 57, 57, 0, 54 },
|
||||
{ 60, 123, 22, 60, 60, 0, 56 },
|
||||
|
|
Loading…
Add table
Reference in a new issue