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