This commit is contained in:
Ka0rX 2023-04-16 20:09:49 +01:00
parent 048ed1364d
commit 021cd960da

View File

@ -179,7 +179,7 @@ public class PlayerData extends OfflinePlayerData implements Closable, Experienc
final String skillId = entry.getValue().getClassSkill().getSkill().getHandler().getId();
final @Nullable ClassSkill classSkill = getProfess().getSkill(skillId);
Validate.notNull(skillSlot, "Could not find skill slot n" + entry.getKey());
Validate.notNull(skillSlot, "Could not find skill with ID '" + skillId + "'");
Validate.notNull(classSkill, "Could not find skill with ID '" + skillId + "'");
entry.getValue().close();
boundSkills.put(entry.getKey(), new BoundSkillInfo(skillSlot, classSkill, this));