Skip to content

Commit

Permalink
Updoot
Browse files Browse the repository at this point in the history
  • Loading branch information
Sparrowbird611 authored and comma committed Sep 26, 2023
1 parent 84db924 commit 68870a8
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions code/modules/reagents/reagent_containers/syringes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,12 @@

if(!target.reagents)
return
if(!can_stab)
to_chat(user, SPAN_NOTICE("This syringe is too big to stab someone with it."))
else if((user.a_intent == I_HURT) && ismob(target))
syringestab(target, user)

if((user.a_intent == I_HURT) && ismob(target))
if(can_stab)
syringestab(target, user)
else
to_chat(user, SPAN_WARNING("This syringe is too big to stab someone with it."))
return

handleTarget(target, user)
Expand Down

0 comments on commit 68870a8

Please sign in to comment.