mirror of
https://github.com/mcMMO-Dev/mcMMO.git
synced 2024-11-22 21:26:46 +01:00
vMinecraft hMod files moved into their own directory to make room for bukkit files.
This commit is contained in:
parent
25e9d7afcf
commit
59a2ebdaf6
@ -78,6 +78,8 @@ String location = "groups.txt";
|
|||||||
String groupline[] = null;
|
String groupline[] = null;
|
||||||
String prefix = Colors.White;
|
String prefix = Colors.White;
|
||||||
int x = 0;
|
int x = 0;
|
||||||
|
if(groups.length == 0 || groups == null)
|
||||||
|
return prefix;
|
||||||
if(vConfig.getInstance().groupcoloredbrackets()){
|
if(vConfig.getInstance().groupcoloredbrackets()){
|
||||||
//Read the file
|
//Read the file
|
||||||
properties = new PropertiesFile(location);
|
properties = new PropertiesFile(location);
|
||||||
@ -91,7 +93,7 @@ String location = "groups.txt";
|
|||||||
if(herp != null)
|
if(herp != null)
|
||||||
x++;
|
x++;
|
||||||
}
|
}
|
||||||
if(x != 0)
|
if(x > 0)
|
||||||
groupline = properties.getString(groups[0]).split(":");
|
groupline = properties.getString(groups[0]).split(":");
|
||||||
//Check if the prefix is null or not
|
//Check if the prefix is null or not
|
||||||
if(!groupline[0].isEmpty() && groupline != null)
|
if(!groupline[0].isEmpty() && groupline != null)
|
Loading…
Reference in New Issue
Block a user