Fix broken spectator/invisible PR on 1.12
This commit is contained in:
parent
85885ced0e
commit
20700c21b8
1 changed files with 3 additions and 3 deletions
|
|
@ -1328,14 +1328,14 @@ public class DynmapPlugin
|
|||
@Override
|
||||
public boolean isInvisible() {
|
||||
if(player != null) {
|
||||
return player.isInvisible()
|
||||
return player.isInvisible();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@override
|
||||
@Override
|
||||
public boolean isSpectator() {
|
||||
if(player != null) {
|
||||
return player.isSpectator()
|
||||
return player.isSpectator();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue