forked from MagicBane/Server
parsing multi worded names
This commit is contained in:
@@ -88,10 +88,23 @@ public class EffectsParser {
|
|||||||
//log all sources
|
//log all sources
|
||||||
|
|
||||||
for (String line : compiledLines) {
|
for (String line : compiledLines) {
|
||||||
|
String rawValue;
|
||||||
|
if (line.contains("SOURCEBEGIN")) {
|
||||||
|
rawValue = compiledLines.get(index + 1).replace(" ", "");
|
||||||
|
switch (rawValue) {
|
||||||
|
case "Crush":
|
||||||
|
rawValue = "Crushing";
|
||||||
|
break;
|
||||||
|
case "Slash":
|
||||||
|
rawValue = "Slashing";
|
||||||
|
break;
|
||||||
|
case "Pierce":
|
||||||
|
rawValue = "Piercing";
|
||||||
|
break;
|
||||||
|
|
||||||
if (line.contains("SOURCEBEGIN"))
|
}
|
||||||
effectData.sources.add(mbEnums.EffectSourceType.valueOf(compiledLines.get(index + 1).replace(" ", "")));
|
effectData.sources.add(mbEnums.EffectSourceType.valueOf(rawValue));
|
||||||
|
}
|
||||||
index++;
|
index++;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user