Implemented countdowns.

This commit is contained in:
Filip Maj
2017-10-01 12:39:46 -04:00
parent 58334a0e5f
commit 441c1a6383
5 changed files with 42 additions and 5 deletions

View File

@@ -1623,9 +1623,9 @@ namespace FFXIVClassic_Map_Server.Actors
currentEventRunning = null;
}
public void BroadcastCountdown(byte countdownLength, uint startTime)
public void BroadcastCountdown(byte countdownLength, ulong syncTime)
{
BroadcastPacket(StartCountdownPacket.BuildPacket(actorId, countdownLength, startTime, "Go!"), true);
BroadcastPacket(StartCountdownPacket.BuildPacket(actorId, countdownLength, syncTime, "Go!"), true);
}
public void SendInstanceUpdate()