diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index d76d488f..69455328 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -39,10 +39,10 @@ using TShockAPI.Net; namespace TShockAPI { - /// Bouncer - The TShock anti-hack and build guardian system + /// Bouncer is the TShock anti-hack and build guardian system public class Bouncer { - /// Bouncer - Constructor call initializes Bouncer & related functionality. + /// Constructor call initializes Bouncer & related functionality. /// A new Bouncer. public Bouncer(TerrariaPlugin pluginInstance) { @@ -52,7 +52,7 @@ namespace TShockAPI GetDataHandlers.HealOtherPlayer.Register(OnHealOtherPlayer); } - /// OnHealOtherPlayer - The handler for the HealOther events in Bouncer + /// The handler for the HealOther events in Bouncer /// sender /// args internal void OnHealOtherPlayer(object sender, GetDataHandlers.HealOtherPlayerEventArgs args) @@ -91,7 +91,7 @@ namespace TShockAPI return; } - /// OnSendTileSquare - The handler for SendTileSquare events in Bouncer + /// The handler for SendTileSquare events in Bouncer /// sender /// args internal void OnSendTileSquare(object sender, GetDataHandlers.SendTileSquareEventArgs args) diff --git a/TShockAPI/GetDataHandlers.cs b/TShockAPI/GetDataHandlers.cs index 153bd7a1..9cae47e6 100644 --- a/TShockAPI/GetDataHandlers.cs +++ b/TShockAPI/GetDataHandlers.cs @@ -532,26 +532,26 @@ namespace TShockAPI return false; } - /// HandledEventArgs - The event args object for the HealOtherPlayer event + /// The event args object for the HealOtherPlayer event public class HealOtherPlayerEventArgs : HandledEventArgs { - /// Player - The TSPlayer object that caused the event + /// The TSPlayer object that caused the event public TSPlayer Player { get; set; } - /// TargetPlayerIndex - The Terraria player index of the target player + /// The Terraria player index of the target player public byte TargetPlayerIndex { get; set; } - /// Amount - The amount to heal by + /// The amount to heal by public short Amount { get; set; } } - /// HealOtherPlayer - When a player heals another player + /// When a player heals another player public static HandlerList HealOtherPlayer; - /// OnHealOtherPlayer - Fires the HealOtherPlayer event - /// player - The TSPlayer that started the event - /// targetPlayerIndex - The Terraria player index that the event targets - /// amount - The amount to heal + /// Fires the HealOtherPlayer event + /// The TSPlayer that started the event + /// The Terraria player index that the event targets + /// The amount to heal /// bool private static bool OnHealOtherPlayer(TSPlayer player, byte targetPlayerIndex, short amount) { @@ -596,7 +596,7 @@ namespace TShockAPI public int TileY { get; set; } } /// - /// SendTileSquare - When the player sends a tile square + /// When the player sends a tile square /// public static HandlerList SendTileSquare;