Updated Vanguard Rider start and maximum Beast Points to retail.

Contributed by CostyKiller.
This commit is contained in:
MobiusDevelopment 2022-06-05 11:17:34 +00:00
parent c6ad971420
commit 991b6b2659
2 changed files with 3 additions and 3 deletions

View File

@ -12002,7 +12002,7 @@ public class Player extends Playable
public void setBeastPoints(int value) public void setBeastPoints(int value)
{ {
// TODO: Implement? // TODO: Implement?
_maxBeastPoints = 500; _maxBeastPoints = 1000;
// Set current points. // Set current points.
_beastPoints = Math.min(_maxBeastPoints, Math.max(0, value)); _beastPoints = Math.min(_maxBeastPoints, Math.max(0, value));

View File

@ -655,8 +655,8 @@ public class EnterWorld implements IClientIncomingPacket
// Vanguard beast points init. // Vanguard beast points init.
else if (player.isVanguard()) else if (player.isVanguard())
{ {
player.setBeastPoints(500); player.setBeastPoints(1000);
player.setBeastPoints(player.getVariables().getInt(PlayerVariables.BEAST_POINT_COUNT, 0)); player.setBeastPoints(player.getVariables().getInt(PlayerVariables.BEAST_POINT_COUNT, 1000));
} }
// Sayha's Grace. // Sayha's Grace.