From 3a2427c42448d591e85cf8138ca3a35d66d3972a Mon Sep 17 00:00:00 2001 From: MarinaGryphon Date: Wed, 13 May 2020 06:21:54 -0500 Subject: [PATCH] Makes dirty syringes actually infect people. (#8864) OOPS. --- code/modules/reagents/reagent_containers/syringes.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/reagent_containers/syringes.dm b/code/modules/reagents/reagent_containers/syringes.dm index eee97291bd0..169170950ba 100644 --- a/code/modules/reagents/reagent_containers/syringes.dm +++ b/code/modules/reagents/reagent_containers/syringes.dm @@ -74,7 +74,7 @@ //This gives the last one a 30% chance of infection. if(prob(dirtiness+(targets.len-1)*10)) log_and_message_admins("[loc] infected [target]'s [eo.name] with \the [src].") - addtimer(CALLBACK(src, .proc/infect_limb), rand(5 MINUTES, 10 MINUTES)) + addtimer(CALLBACK(src, .proc/infect_limb, eo), rand(5 MINUTES, 10 MINUTES)) //75% chance to spread a virus if we have one if(LAZYLEN(viruses) && prob(75)) @@ -470,4 +470,4 @@ . = ..() reagents.add_reagent("chloralhydrate", 60) mode = SYRINGE_INJECT - update_icon() + update_icon() \ No newline at end of file