Skip to content
Snippets Groups Projects
Commit ad36e2cc authored by Zoey76's avatar Zoey76
Browse files

Minor cleanup

parent 56d172c8
No related branches found
No related tags found
No related merge requests found
......@@ -46,7 +46,7 @@ public final class BlockBuffSlot extends AbstractEffect
_blockBuffSlots = new HashSet<>();
for (String slot : blockBuffSlots.split(";"))
{
_blockBuffSlots.add(AbnormalType.getAbnormalType(slot));
_blockBuffSlots.add(AbnormalType.valueOf(slot));
}
}
else
......
......@@ -52,7 +52,7 @@ public final class DispelBySlot extends AbstractEffect
for (String ngtStack : _dispel.split(";"))
{
String[] ngt = ngtStack.split(",");
_dispelAbnormals.put(AbnormalType.getAbnormalType(ngt[0]), Short.parseShort(ngt[1]));
_dispelAbnormals.put(AbnormalType.valueOf(ngt[0]), Short.parseShort(ngt[1]));
}
}
else
......
......@@ -55,7 +55,7 @@ public final class DispelBySlotProbability extends AbstractEffect
for (String ngtStack : _dispel.split(";"))
{
String[] ngt = ngtStack.split(",");
_dispelAbnormals.put(AbnormalType.getAbnormalType(ngt[0]), (ngt.length > 1) ? Short.parseShort(ngt[1]) : Short.MAX_VALUE);
_dispelAbnormals.put(AbnormalType.valueOf(ngt[0]), (ngt.length > 1) ? Short.parseShort(ngt[1]) : Short.MAX_VALUE);
}
}
else
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment