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)