From b5e106f37b2fe60208343bf59615d24aefb81426 Mon Sep 17 00:00:00 2001 From: Fox-McCloud Date: Mon, 8 Aug 2016 01:53:15 -0400 Subject: [PATCH] src --- code/game/gamemodes/malfunction/Malf_Modules.dm | 2 +- code/game/machinery/firealarm.dm | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/code/game/gamemodes/malfunction/Malf_Modules.dm b/code/game/gamemodes/malfunction/Malf_Modules.dm index 556922ae941..59a731bed47 100644 --- a/code/game/gamemodes/malfunction/Malf_Modules.dm +++ b/code/game/gamemodes/malfunction/Malf_Modules.dm @@ -525,4 +525,4 @@ if(href_list["showdesc"]) if(AM.mod_pick_name == href_list["showdesc"]) temp = AM.description - src.use(usr) \ No newline at end of file + use(usr) \ No newline at end of file diff --git a/code/game/machinery/firealarm.dm b/code/game/machinery/firealarm.dm index 9e91de0fce1..ffa35c963d0 100644 --- a/code/game/machinery/firealarm.dm +++ b/code/game/machinery/firealarm.dm @@ -55,7 +55,7 @@ FIRE ALARM if(user) user.visible_message("Sparks fly out of the [src]!", "You emag [src], disabling its thermal sensors.") - playsound(src.loc, 'sound/effects/sparks4.ogg', 50, 1) + playsound(loc, 'sound/effects/sparks4.ogg', 50, 1) /obj/machinery/firealarm/temperature_expose(datum/gas_mixture/air, temperature, volume) if(!emagged && detecting && temperature > T0C + 200)