Files
BLHX.Server/BLHX.Server.Game/Commands/SaveCommand.cs
2024-02-18 01:42:56 -05:00

16 lines
346 B
C#

using BLHX.Server.Common.Utils;
namespace BLHX.Server.Game.Commands;
[commandHandler("save", "Save the current state", "save")]
public class SaveCommand : Command
{
public override void Execute(Dictionary<string, string> args)
{
base.Execute(args);
Logger.c.Log("Saving...");
Logger.c.Log("Saved!");
}
}