From: Princess Cheeseballs <66055347+Princess-Cheeseballs@users.noreply.github.com>
Date: Fri, 24 Oct 2025 19:11:20 +0000 (-0700)
Subject: Delete an Unused Event. (#41083)
X-Git-Url: https://git.smokeofanarchy.ru/gitweb.cgi?a=commitdiff_plain;h=8212edaae6a4369f33fac033bffa6d568866bf12;p=space-station-14.git
Delete an Unused Event. (#41083)
delet
Co-authored-by: Princess Cheeseballs <66055347+Pronana@users.noreply.github.com>
---
diff --git a/Content.Server/Nutrition/Events/DrinkEvents.cs b/Content.Server/Nutrition/Events/DrinkEvents.cs
deleted file mode 100644
index b7a7403105..0000000000
--- a/Content.Server/Nutrition/Events/DrinkEvents.cs
+++ /dev/null
@@ -1,12 +0,0 @@
-using Content.Shared.Chemistry.Components;
-
-namespace Content.Server.Nutrition.Events;
-
-///
-/// Raised on the entity drinking. This is right before they actually transfer the solution into the stomach.
-///
-/// The drink that is being drank.
-/// The solution that will be digested.
-/// Whether the target was forced to drink the solution by somebody else.
-[ByRefEvent]
-public record struct BeforeIngestDrinkEvent(EntityUid Drink, Solution Solution, bool Forced);