Updated Vanguard Rider start and maximum Beast Points to retail.
Contributed by CostyKiller.
This commit is contained in:
parent
c6ad971420
commit
991b6b2659
@ -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));
|
||||||
|
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user