mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 11:40:41 +00:00
Fix UUID related NPE
This commit is contained in:
parent
3be7511b7c
commit
4152582ae0
1 changed files with 1 additions and 1 deletions
|
@ -100,7 +100,7 @@ public class UUIDHandler {
|
|||
if (implementation == null) {
|
||||
return null;
|
||||
}
|
||||
if (uuid.equals(DBFunc.SERVER)) {
|
||||
if (uuid != null && uuid.equals(DBFunc.SERVER)) {
|
||||
return Captions.SERVER.s();
|
||||
}
|
||||
return implementation.getName(uuid);
|
||||
|
|
Loading…
Reference in a new issue