stuff seth missed

admin -> staff
This commit is contained in:
speedxx
2020-08-15 12:35:48 -04:00
parent 3f4d34d172
commit 78b73b3b63
36 changed files with 148 additions and 159 deletions

View File

@ -57,7 +57,7 @@ public class FPlayer
private BukkitTask lockupScheduleTask = null;
private boolean lockedUp = false;
private String lastMessage = "";
private boolean inAdminchat = false;
private boolean inStaffchat = false;
private boolean allCommandsBlocked = false;
@Getter
@Setter
@ -348,14 +348,14 @@ public class FPlayer
return lastMessage;
}
public void setAdminChat(boolean inAdminchat)
public void setStaffChat(boolean inStaffchat)
{
this.inAdminchat = inAdminchat;
this.inStaffchat = inStaffchat;
}
public boolean inAdminChat()
public boolean inStaffChat()
{
return this.inAdminchat;
return this.inStaffchat;
}
public boolean allCommandsBlocked()