getPermPrefix should return the actual prefix and not null

This commit is contained in:
Dave Akers 2018-09-01 14:55:55 -05:00
parent 638f8ad88b
commit b89d792b5e
1 changed files with 1 additions and 2 deletions

View File

@ -97,8 +97,7 @@ public class Warp extends Addon {
}
public String getPermPrefix(World world) {
this.getPlugin().getIWM().getPermissionPrefix(world);
return null;
return this.getPlugin().getIWM().getPermissionPrefix(world);
}
/**