Skip to content

Commit

Permalink
logic fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Antoonij authored Sep 20, 2024
1 parent b3ed30e commit 8d43e51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion code/datums/elements/reagent_attack.dm
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
/datum/element/reagent_attack/Attach(atom/source, reagent_id, reagent_amount, piercing, reagent_limit, list/allowed_zones)
. = ..()

if(!isitem(source) || !ismob(source))
if(!isitem(source) && !ismob(source))
return ELEMENT_INCOMPATIBLE

src.reagent_id = reagent_id
Expand Down

0 comments on commit 8d43e51

Please sign in to comment.