Files
tbd-station-14/Content.Server/Nutrition/Components/IgnoreBadFoodComponent.cs
DrSmugleaf 7f9b2a0434 Fix eating and drinking verbs showing up after a short delay and making your verb UI bounce (#38164)
* Fix eating and drinking verbs showing up after a short delay and making your verb UI bounce

* Usings fix

* Usings fix

* Usings fix

* Usings fix

* CVar fix

* Predicted ppups

* Openable predicted popup

* Fix audio prediction
2025-06-09 10:36:04 -04:00

13 lines
343 B
C#

using Content.Shared.Nutrition.EntitySystems;
namespace Content.Server.Nutrition.Components;
/// <summary>
/// This component allows NPC mobs to eat food with BadFoodComponent.
/// See MobMouseAdmeme for usage.
/// </summary>
[RegisterComponent, Access(typeof(FoodSystem))]
public sealed partial class IgnoreBadFoodComponent : Component
{
}