mirror of
https://github.com/rafi1212122/BLHX.Server.git
synced 2025-12-13 06:54:51 +01:00
16 lines
346 B
C#
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!");
|
|
}
|
|
}
|