Co-authored-by: deltanedas <@deltanedas:kde.org> Co-authored-by: metalgearsloth <31366439+metalgearsloth@users.noreply.github.com>
13 lines
409 B
C#
13 lines
409 B
C#
using Content.Server.Nutrition.EntitySystems;
|
|
|
|
namespace Content.Server.Nutrition.Components;
|
|
|
|
/// <summary>
|
|
/// This component prevents NPC mobs like mice from wanting to eat something that is edible but is not exactly food.
|
|
/// Including but not limited to: uranium, death pills, insulation
|
|
/// </summary>
|
|
[RegisterComponent, Access(typeof(FoodSystem))]
|
|
public sealed class BadFoodComponent : Component
|
|
{
|
|
}
|