Addition of PC points admin commands.

This commit is contained in:
mobius
2015-01-29 20:50:25 +00:00
parent 02b43ae09e
commit f9acd64eb8
8 changed files with 302 additions and 11 deletions

View File

@ -14173,11 +14173,11 @@ public final class L2PcInstance extends L2Playable
}
public void setPcBangPoints(final int i)
public void setPcBangPoints(final int count)
{
if (i < 200000)
if (count < 200000)
{
_pcBangPoints = i;
_pcBangPoints = count;
}
else
{