Maybe some notifications as well?

This commit is contained in:
Twitchy 2011-08-08 22:31:50 +12:00
parent a9aa1f7c39
commit c87fb9620b

View file

@ -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);
}