Addition of item Express Bus Pass Card (47384).

Contributed by Liamxroy.
This commit is contained in:
MobiusDev
2018-03-26 23:35:02 +00:00
parent 5987d6f8e5
commit 4fc1cb4338
8 changed files with 64 additions and 17 deletions

View File

@@ -28,11 +28,11 @@ import com.l2jmobius.gameserver.model.skills.Skill;
*/
public final class GiveXp extends AbstractEffect
{
private final int _xp;
private final long _xp;
public GiveXp(StatsSet params)
{
_xp = params.getInt("xp", 0);
_xp = params.getLong("xp", 0);
}
@Override