Maybe some notifications as well?
This commit is contained in:
parent
a9aa1f7c39
commit
c87fb9620b
1 changed files with 6 additions and 0 deletions
|
|
@ -1684,7 +1684,10 @@ namespace TShockAPI
|
||||||
if (args.Parameters[1] == "1")
|
if (args.Parameters[1] == "1")
|
||||||
{
|
{
|
||||||
if (!args.Player.AwaitingTemp2)
|
if (!args.Player.AwaitingTemp2)
|
||||||
|
{
|
||||||
|
args.Player.SendMessage("Hit a block to Set Point 1", Color.Yellow);
|
||||||
args.Player.AwaitingTemp1 = true;
|
args.Player.AwaitingTemp1 = true;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
args.Player.SendMessage("Awaiting you to Set Point 2", Color.Yellow);
|
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.TempArea.X != 0)
|
||||||
{
|
{
|
||||||
if (!args.Player.AwaitingTemp1)
|
if (!args.Player.AwaitingTemp1)
|
||||||
|
{
|
||||||
|
args.Player.SendMessage("Hit a block to Set Point 2", Color.Yellow);
|
||||||
args.Player.AwaitingTemp2 = true;
|
args.Player.AwaitingTemp2 = true;
|
||||||
|
}
|
||||||
else
|
else
|
||||||
args.Player.SendMessage("Awaiting you to Set Point 1", Color.Yellow);
|
args.Player.SendMessage("Awaiting you to Set Point 1", Color.Yellow);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue