* Engine namespace changes.
* Automated remove redundant using statements.
* Simplified Graphics namespace.
* Apparently the container system stores full type names in the map file.😞 This updates those names.
* API Changes to LocalizationManager.LoadCulture.
* Update submodule to v0.3.2
29 lines
998 B
C#
29 lines
998 B
C#
#nullable enable
|
|
using Content.Server.Administration;
|
|
using Content.Shared.Administration;
|
|
using Robust.Server.Player;
|
|
using Robust.Shared.Console;
|
|
|
|
namespace Content.Server.Commands.Damage
|
|
{
|
|
[AdminCommand(AdminFlags.Fun)]
|
|
public class AddDamageFlagCommand : DamageFlagCommand
|
|
{
|
|
public override string Command => "adddamageflag";
|
|
public override string Description => "Adds a damage flag to your entity or another.";
|
|
public override string Help => $"Usage: {Command} <flag> / {Command} <entityUid> <flag>";
|
|
|
|
public override void Execute(IConsoleShell shell, string argStr, string[] args)
|
|
{
|
|
var player = shell.Player as IPlayerSession;
|
|
if (!TryGetEntity(shell, player, args, true, out var entity, out var flag, out var damageable))
|
|
{
|
|
return;
|
|
}
|
|
|
|
damageable.AddFlag(flag);
|
|
shell.WriteLine($"Added damage flag {flag} to entity {entity.Name}");
|
|
}
|
|
}
|
|
}
|