jsgr-mmo/src/CommandHandlers/EMDZombiesHandler.cs
Hipposgrumm c06cfb4d17
Support for Eat My Dust (#4)
* Support for Eat My Dust
Zombie Alert manager is stubbed.
Added helpers to allow for weapon MMO.
PlayerData for Eat My Dust

* Zombie Alert Added
* Fix Zombie Alert Timing
* Honestly should probably catch this exception [null room in PM handler]. I foresee it occurring very commonly. While it shouldn't halt the server (except in visual studio debug), it's annoying to see.
2024-12-29 17:05:32 +01:00

30 lines
901 B
C#

using System.Globalization;
using sodoffmmo.Attributes;
using sodoffmmo.Core;
using sodoffmmo.Data;
namespace sodoffmmo.CommandHandlers;
// TODO: This is currently stubbed. Supposed to do something.
// Should probably be done by someone who actually played the game.
[ExtensionCommandHandler("SU")]
public class EMDZombiesUpdateHandler : CommandHandler {
public override Task Handle(Client client, NetworkObject receivedObject) {
return Task.CompletedTask;
}
}
[ExtensionCommandHandler("EN")]
public class EMDZombiesEnterHandler : CommandHandler {
public override Task Handle(Client client, NetworkObject receivedObject) {
return Task.CompletedTask;
}
}
[ExtensionCommandHandler("EX")]
public class EMDZombiesExitHandler : CommandHandler {
public override Task Handle(Client client, NetworkObject receivedObject) {
return Task.CompletedTask;
}
}