diff --git a/TShockAPI/TSPlayer.cs b/TShockAPI/TSPlayer.cs
index 9b42d7b4..42d1b157 100644
--- a/TShockAPI/TSPlayer.cs
+++ b/TShockAPI/TSPlayer.cs
@@ -1254,19 +1254,33 @@ namespace TShockAPI
return Group.HasPermission(permission);
}
- ///
+ ///
+ /// Checks to see if a player has permission to use the specific banned item.
+ /// Fires the hook which may be handled to override item ban permission checks.
+ ///
+ /// The to check.
+ /// True if the player has permission to use the banned item.
public bool HasPermission(ItemBan bannedItem)
{
return TShock.Itembans.ItemIsBanned(bannedItem.Name, this);
}
- ///
+ ///
+ /// Checks to see if a player has permission to use the specific banned projectile.
+ /// Fires the hook which may be handled to override projectile ban permission checks.
+ ///
+ /// The to check.
+ /// True if the player has permission to use the banned projectile.
public bool HasPermission(ProjectileBan bannedProj)
{
return TShock.ProjectileBans.ProjectileIsBanned(bannedProj.ID, this);
}
-
- ///
+ ///
+ /// Checks to see if a player has permission to use the specific banned tile.
+ /// Fires the hook which may be handled to override tile ban permission checks.
+ ///
+ /// The to check.
+ /// True if the player has permission to use the banned tile.
public bool HasPermission(TileBan bannedTile)
{
return TShock.TileBans.TileIsBanned(bannedTile.ID, this);