mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 04:20:41 +00:00
Altering PEX prefix/suffix.
This commit is contained in:
parent
38b6d79f49
commit
65a588ea20
4 changed files with 4 additions and 2 deletions
|
@ -110,6 +110,7 @@ javadoc.noindex=false
|
||||||
javadoc.nonavbar=false
|
javadoc.nonavbar=false
|
||||||
javadoc.notree=false
|
javadoc.notree=false
|
||||||
javadoc.private=false
|
javadoc.private=false
|
||||||
|
javadoc.reference.PermissionsEx.jar=../lib/PermissionsEx-javadoc.jar
|
||||||
javadoc.splitindex=true
|
javadoc.splitindex=true
|
||||||
javadoc.use=true
|
javadoc.use=true
|
||||||
javadoc.version=false
|
javadoc.version=false
|
||||||
|
|
|
@ -77,7 +77,7 @@ public class PermissionsExHandler implements IPermissionsHandler
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return user.getPrefix();
|
return user.getPrefix(base.getWorld().getName());
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
@ -88,6 +88,7 @@ public class PermissionsExHandler implements IPermissionsHandler
|
||||||
{
|
{
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return user.getSuffix();
|
|
||||||
|
return user.getSuffix(base.getWorld().getName());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
BIN
lib/PermissionsEx-javadoc.jar
Normal file
BIN
lib/PermissionsEx-javadoc.jar
Normal file
Binary file not shown.
Binary file not shown.
Loading…
Reference in a new issue