From dfc2cd8f6f44bb8e43b202b862ffc935c39f5546 Mon Sep 17 00:00:00 2001 From: White Date: Tue, 7 Jul 2015 22:55:50 +0930 Subject: [PATCH] Fixed the issue where using the Super Absorbent Sponge would disable users --- TShockAPI/GetDataHandlers.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/TShockAPI/GetDataHandlers.cs b/TShockAPI/GetDataHandlers.cs index 83b19505..835a890b 100755 --- a/TShockAPI/GetDataHandlers.cs +++ b/TShockAPI/GetDataHandlers.cs @@ -2684,7 +2684,8 @@ namespace TShockAPI { bucket = 3; } - else if (args.TPlayer.inventory[args.TPlayer.selectedItem].type == 3031) + else if (args.TPlayer.inventory[args.TPlayer.selectedItem].type == 3031 || + args.TPlayer.inventory[args.TPlayer.selectedItem].type == 3032) { bucket = 4; }