mirror of
https://github.com/DieReicheErethons/Brewery.git
synced 2025-01-21 21:01:20 +01:00
hot-fix for array bounds error
This commit is contained in:
parent
1a9e9e3a13
commit
838621715c
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
|
||||
<groupId>com.dre</groupId>
|
||||
<artifactId>brewery</artifactId>
|
||||
<version>1.5</version>
|
||||
<version>1.5.01</version>
|
||||
<name>Brewery</name>
|
||||
|
||||
<properties>
|
||||
|
@ -625,7 +625,7 @@ public class Brew {
|
||||
|
||||
// True if the PotionMeta has colored Lore
|
||||
public static Boolean hasColorLore(PotionMeta meta) {
|
||||
return meta.hasLore() && !meta.getLore().get(1).startsWith(P.p.color("&7"));
|
||||
return meta.hasLore() && (meta.getLore().size() > 0 && !meta.getLore().get(1).startsWith(P.p.color("&7")));
|
||||
}
|
||||
|
||||
// gets the Color that represents a quality in Lore
|
||||
|
Loading…
Reference in New Issue
Block a user