From 42b0733cf7df4630d4e85ccaafb6db9054a529ce Mon Sep 17 00:00:00 2001 From: Zirok <108930384+Zirok-BYOND@users.noreply.github.com> Date: Fri, 16 Sep 2022 09:56:37 +0200 Subject: [PATCH] Fix a runtime with mkII hypospray injections INDIVIDUAL_ATTACK_LOG is not a valid category, so this just runtimes. Since this is already being logged above I decided to just cut this. --- code/modules/reagents/reagent_containers/hypospray.dm | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/modules/reagents/reagent_containers/hypospray.dm b/code/modules/reagents/reagent_containers/hypospray.dm index 75c9f3c117..6a68b79fdd 100644 --- a/code/modules/reagents/reagent_containers/hypospray.dm +++ b/code/modules/reagents/reagent_containers/hypospray.dm @@ -504,8 +504,6 @@ if(L != user) L.visible_message("[user] uses the [src] on [L]!", \ "[user] uses the [src] on you!") - else - L.log_message("applied [src] to themselves ([contained]).", INDIVIDUAL_ATTACK_LOG) var/fraction = min(vial.amount_per_transfer_from_this/vial.reagents.total_volume, 1) vial.reagents.reaction(L, method, fraction)