Skip to content

Commit

Permalink
fuck
Browse files Browse the repository at this point in the history
  • Loading branch information
KoishiVibe committed Aug 1, 2024
1 parent 1ebc1ae commit f5686ed
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions code/game/objects/items/reagent_containers/syringes.dm
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,12 @@
syringestab(target, user)
return

var/injection_time = 1 SECONDS
var/injection_time = 10 SECONDS
if(user.skills)
if(!skillcheck(user, SKILL_MEDICAL, SKILL_MEDICAL_TRAINED))
to_chat(user, SPAN_WARNING("You aren't trained to use syringes..."))
return
to_chat(user, SPAN_WARNING("You aren't trained to use syringes... better go slow."))
else
injection_time = (injection_time*user.get_skill_duration_multiplier(SKILL_MEDICAL))
injection_time = ((injection_time/5)*user.get_skill_duration_multiplier(SKILL_MEDICAL))


switch(mode)
Expand Down

0 comments on commit f5686ed

Please sign in to comment.