* add haloperidol, potassium iodide * review fixes * review and tuning * add: translation * new mutations * translation string fix * holymelons are holy now * add: translation * rename holymelon * Tomato killers don't kill the server anymore. (#28173) * tomato killer auto death * fix * Update miscellaneous.yml --------- Co-authored-by: slarticodefast <161409025+slarticodefast@users.noreply.github.com> Co-authored-by: Ed <96445749+TheShuEd@users.noreply.github.com>
10 lines
241 B
C#
10 lines
241 B
C#
using Content.Shared.StatusEffect;
|
|
|
|
namespace Content.Shared.Drowsiness;
|
|
|
|
public abstract class SharedDrowsinessSystem : EntitySystem
|
|
{
|
|
[ValidatePrototypeId<StatusEffectPrototype>]
|
|
public const string DrowsinessKey = "Drowsiness";
|
|
}
|