[MIRROR] Fix hypo injector being unable to inject common injectables. (#11992)

Co-authored-by: Aura Dusklight <46622484+NovaDusklight@users.noreply.github.com>
Co-authored-by: Kashargul <144968721+Kashargul@users.noreply.github.com>
This commit is contained in:
CHOMPStation2StaffMirrorBot
2025-11-17 02:02:39 +01:00
committed by GitHub
co-authored by Aura Dusklight Kashargul
parent 1fd3214a67
commit eae59e5b2b
3 changed files with 39 additions and 18 deletions
@@ -201,7 +201,7 @@
return
// CHOMPedit end
if(!target.is_open_container() && !ismob(target) && !istype(target, /obj/item/reagent_containers/food) && !istype(target, /obj/item/slime_extract) && !istype(target, /obj/item/clothing/mask/smokable/cigarette) && !istype(target, /obj/item/storage/fancy/cigarettes) && !istype(target, /obj/item/clothing/mask/chewable)) // CHOMPEdit
if(!target.is_injectable_container() && !ismob(target))
to_chat(user, span_notice("You cannot directly fill this object."))
return
if(!target.reagents.get_free_space())