Fixing xml typos for previous commit.

This commit is contained in:
MobiusDev
2017-12-05 20:34:42 +00:00
parent 58abbcf6ec
commit b33352abb5
32 changed files with 36 additions and 36 deletions

View File

@@ -37,7 +37,7 @@ public final class BlockAbnormalSlot extends AbstractEffect
public BlockAbnormalSlot(StatsSet params)
{
_blockAbnormalSlots = Arrays.stream(params.getString("dispel").split(";")).map(slot -> Enum.valueOf(AbnormalType.class, slot)).collect(Collectors.toSet());
_blockAbnormalSlots = Arrays.stream(params.getString("slot").split(";")).map(slot -> Enum.valueOf(AbnormalType.class, slot)).collect(Collectors.toSet());
}
@Override