let animals drink things (#18236)
* thirst .Owner removal * thirst file scope * drink update + minor refactor * drink file scope * let animals drink things * dont eat/drink when dont need to * admeme mouse override * moo --------- Co-authored-by: deltanedas <@deltanedas:kde.org>
This commit is contained in:
12
Content.Server/Nutrition/Components/BadDrinkComponent.cs
Normal file
12
Content.Server/Nutrition/Components/BadDrinkComponent.cs
Normal file
@@ -0,0 +1,12 @@
|
||||
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 class BadDrinkComponent : Component
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user