Allow for spaces between comma-separated potion effects.
This commit is contained in:
@@ -20,7 +20,7 @@ public class PotionEffectParser
|
|||||||
|
|
||||||
List<PotionEffect> potions = new ArrayList<PotionEffect>();
|
List<PotionEffect> potions = new ArrayList<PotionEffect>();
|
||||||
for (String potion : s.split(",")) {
|
for (String potion : s.split(",")) {
|
||||||
PotionEffect eff = parsePotionEffect(potion);
|
PotionEffect eff = parsePotionEffect(potion.trim());
|
||||||
if (eff != null) {
|
if (eff != null) {
|
||||||
potions.add(eff);
|
potions.add(eff);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user