mirror of
https://github.com/AtlasMediaGroup/TotalFreedomMod.git
synced 2025-06-12 13:53:54 +00:00
asdf (#91)
This commit is contained in:
@ -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;
|
||||
|
Reference in New Issue
Block a user