Default type for NPC template set to Folk.

This commit is contained in:
MobiusDevelopment
2022-04-18 14:20:12 +00:00
parent a409bfdc83
commit 253dbc5cd3
25 changed files with 25 additions and 25 deletions

View File

@@ -99,7 +99,7 @@ public class NpcData implements IXmlReader
final StatSet set = new StatSet(new HashMap<>());
final int npcId = parseInteger(attrs, "id");
final int level = parseInteger(attrs, "level", 85);
final String type = parseString(attrs, "type");
final String type = parseString(attrs, "type", "Folk");
Map<String, Object> parameters = null;
Map<Integer, Skill> skills = null;
Set<Integer> clans = null;