Give newly created characters proper AP count (#498)

Given in the form of AP; players were originally missing 9AP upon creation
This commit is contained in:
Periwinks
2019-08-14 19:47:48 -04:00
committed by Ronan Lana
parent 2295317a84
commit 2c16a4d908

View File

@@ -39,7 +39,7 @@ public class CharacterFactoryRecipe {
private int level, map, top, bottom, shoes, weapon;
private int str = 4, dex = 4, int_ = 4, luk = 4;
private int maxHp = 50, maxMp = 5;
private int ap = 0, sp = 0;
private int ap = 9, sp = 0;
private int meso = 0;
private List<Pair<Skill, Integer>> skills = new LinkedList<>();