MudGame commands are corrected to work with the new abstract BaseCommands class.

This commit is contained in:
Scionwest_cp 2011-09-19 19:15:51 -07:00
parent 974cc0f9b8
commit 16ef50f59a
13 changed files with 13 additions and 13 deletions

View file

@ -18,7 +18,7 @@ public class CommandGetTime : BaseCommand
/// </summary>
/// <param name="command"></param>
/// <param name="player"></param>
public void Execute(String command, BaseCharacter player)
public override void Execute(String command, BaseCharacter player)
{
//Send the returned String containing the World Time to the player.
player.Send(player.ActiveGame.WorldTime.GetCurrentWorldTime());