13 lines
394 B
C#
13 lines
394 B
C#
using Content.Server.Nutrition.EntitySystems;
|
|
|
|
namespace Content.Server.Nutrition.Components;
|
|
|
|
/// <summary>
|
|
/// This component prevents NPC mobs like mice or cows from wanting to drink something that shouldn't be drank from.
|
|
/// Including but not limited to: puddles
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(DrinkSystem))]
|
|
public sealed partial class BadDrinkComponent : Component
|
|
{
|
|
}
|