From 863fa706c2e24c7cb1316f3d0163e1855d9bad5b Mon Sep 17 00:00:00 2001 From: Lucas Nicodemus Date: Thu, 14 Dec 2017 20:28:50 -0700 Subject: [PATCH] Document OnPlaceChest in Bouncer --- TShockAPI/Bouncer.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/TShockAPI/Bouncer.cs b/TShockAPI/Bouncer.cs index 17bd69ef..6e9bdbf1 100644 --- a/TShockAPI/Bouncer.cs +++ b/TShockAPI/Bouncer.cs @@ -54,6 +54,9 @@ namespace TShockAPI GetDataHandlers.TileEdit.Register(OnTileEdit); } + /// The place chest event that Bouncer hooks to prevent accidental damage. + /// The object that triggered the event. + /// The packet arguments that the event has. internal void OnPlaceChest(object sender, GetDataHandlers.PlaceChestEventArgs args) { int tileX = args.TileX;