Updated DroxPerms to 0.4.0

Couple changes here - DroxPerms 0.4.0 has methods
for getting a list of groups, so now DroxPerms is 100% Vault
compatible. *woo*
This commit is contained in:
Tristen Allen 2012-08-04 15:35:31 -04:00
parent 4bf02f2444
commit c8b8be0ac2
4 changed files with 3 additions and 3 deletions

Binary file not shown.

Binary file not shown.

View File

@ -16,9 +16,9 @@
<dependency>
<groupId>de.hydrox.bukkit.DroxPerms</groupId>
<artifactId>DroxPerms</artifactId>
<version>0.3.1</version>
<version>0.4.0-SNAPSHOT</version>
<scope>system</scope>
<systemPath>${project.basedir}/lib/DroxPerms.jar</systemPath>
<systemPath>${project.basedir}/lib/DroxPerms-0.4.0-SNAPSHOT.jar</systemPath>
</dependency>
<dependency>
<groupId>net.krinsoft.privileges</groupId>

View File

@ -134,7 +134,7 @@ public class Permission_DroxPerms extends Permission {
@Override
public String[] getGroups() {
return null;
return API.getGroupNames();
}
}