This commit is contained in:
Telesphoreo
2018-07-24 19:44:00 -07:00
committed by Seth
parent 0d503a6c06
commit 7278176143
24 changed files with 184 additions and 53 deletions

View File

@ -141,6 +141,31 @@ public class FPlayer
this.invSee = toggle;
}
public boolean isEditBlocked()
{
return editBlocked;
}
public void setEditBlocked(boolean toggle)
{
this.editBlocked = toggle;
}
public boolean isPvpBlocked()
{
return pvpBlocked;
}
public CageData getCageData()
{
return cageData;
}
public void setPvpBlocked(boolean toggle)
{
this.pvpBlocked = toggle;
}
public boolean isFuckOff()
{
return fuckoffRadius > 0;
@ -353,6 +378,12 @@ public class FPlayer
this.inAdminchat = inAdminchat;
}
public FreezeData getFreezeData()
{
return freezeData;
}
public boolean inAdminChat()
{
return this.inAdminchat;