From f4447fc1334fd722ddf3be08db52e4d0ec74aa15 Mon Sep 17 00:00:00 2001 From: Zack Date: Tue, 27 Feb 2024 17:28:36 -0600 Subject: [PATCH] Update firstaid.dm (#24302) --- code/game/objects/items/weapons/storage/firstaid.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/weapons/storage/firstaid.dm b/code/game/objects/items/weapons/storage/firstaid.dm index 92d06d52b92..118b05361e7 100644 --- a/code/game/objects/items/weapons/storage/firstaid.dm +++ b/code/game/objects/items/weapons/storage/firstaid.dm @@ -295,7 +295,7 @@ to_chat(user, "You are already applying meds.") return applying_meds = TRUE - for(var/obj/item/reagent_containers/pill/P in contents) + for(var/obj/item/reagent_containers/P in contents) if(P.attack(M, user)) applying_meds = FALSE else