Files
tbd-station-14/Content.Server/Nutrition/Thirsty.cs
Mervill 0f33025d34 Debug command to make you thirsty (#30562)
* debug command to make you thirsty

* pr feedback
2024-08-03 01:49:08 +10:00

39 lines
1.2 KiB
C#

using Content.Server.Administration;
using Content.Shared.Administration;
using Content.Shared.Nutrition.Components;
using Content.Shared.Nutrition.EntitySystems;
using Robust.Shared.Console;
namespace Content.Server.Nutrition;
[AdminCommand(AdminFlags.Debug)]
public sealed class Thirsty : LocalizedEntityCommands
{
public override string Command => "thirsty";
public override void Execute(IConsoleShell shell, string argStr, string[] args)
{
var player = shell.Player;
if (player == null)
{
shell.WriteError(Loc.GetString("cmd-nutrition-error-player"));
return;
}
if (player.AttachedEntity is not {Valid: true} playerEntity)
{
shell.WriteError(Loc.GetString("cmd-nutrition-error-entity"));
return;
}
if (!EntityManager.TryGetComponent(playerEntity, out ThirstComponent? thirst))
{
shell.WriteError(Loc.GetString("cmd-nutrition-error-component", ("comp", nameof(ThirstComponent))));
return;
}
var thirstyThreshold = thirst.ThirstThresholds[ThirstThreshold.Parched];
EntityManager.System<ThirstSystem>().SetThirst(playerEntity, thirst, thirstyThreshold);
}
}