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