diff --git a/code/game/turfs/simulated/floor.dm b/code/game/turfs/simulated/floor.dm
index a0f7a0416f6..4d44c199d31 100644
--- a/code/game/turfs/simulated/floor.dm
+++ b/code/game/turfs/simulated/floor.dm
@@ -571,7 +571,7 @@ turf/simulated/floor/proc/update_icon()
user << "You must remove the plating first."
else if(istype(C, /obj/item/weapon/pickaxe/shovel))
if(is_grass_floor())
- playsound(loc, 'sound/items/shovel.ogg', 50, 1)
+ playsound(src, 'sound/items/shovel.ogg', 50, 1)
new /obj/item/weapon/ore/glass(src)
new /obj/item/weapon/ore/glass(src) //Make some sand if you shovel grass
user << "You shovel the grass."
diff --git a/code/modules/mining/mine_turfs.dm b/code/modules/mining/mine_turfs.dm
index 184cf957d29..4cda2fd9ddc 100644
--- a/code/modules/mining/mine_turfs.dm
+++ b/code/modules/mining/mine_turfs.dm
@@ -541,7 +541,7 @@
playsound(get_turf(src), 'sound/effects/rustle1.ogg', 50, 1) //russle sounds sounded better
if(do_after(user, used_digging.digspeed) && user) //the better the drill, the faster the digging
- playsound(loc, 'sound/items/shovel.ogg', 50, 1)
+ playsound(src, 'sound/items/shovel.ogg', 50, 1)
user << "You dug a hole."
gets_dug()