From c87fb9620b548fe69a3c213dec8f5b948a324395 Mon Sep 17 00:00:00 2001 From: Twitchy Date: Mon, 8 Aug 2011 22:31:50 +1200 Subject: [PATCH] Maybe some notifications as well? --- TShockAPI/Commands.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/TShockAPI/Commands.cs b/TShockAPI/Commands.cs index 74c10023..959a9803 100644 --- a/TShockAPI/Commands.cs +++ b/TShockAPI/Commands.cs @@ -1684,7 +1684,10 @@ namespace TShockAPI if (args.Parameters[1] == "1") { if (!args.Player.AwaitingTemp2) + { + args.Player.SendMessage("Hit a block to Set Point 1", Color.Yellow); args.Player.AwaitingTemp1 = true; + } else args.Player.SendMessage("Awaiting you to Set Point 2", Color.Yellow); } @@ -1693,7 +1696,10 @@ namespace TShockAPI if (args.Player.TempArea.X != 0) { if (!args.Player.AwaitingTemp1) + { + args.Player.SendMessage("Hit a block to Set Point 2", Color.Yellow); args.Player.AwaitingTemp2 = true; + } else args.Player.SendMessage("Awaiting you to Set Point 1", Color.Yellow); }