diff --git a/code/game/turfs/simulated/water.dm b/code/game/turfs/simulated/water.dm index 3554b176e2..0d52a5bd61 100644 --- a/code/game/turfs/simulated/water.dm +++ b/code/game/turfs/simulated/water.dm @@ -18,7 +18,7 @@ var/depth = 1 // Higher numbers indicates deeper water. var/reagent_type = "water" - var/datum/looping_sound/water/soundloop + // var/datum/looping_sound/water/soundloop CHOMPEdit: Removing soundloop for now. /turf/simulated/floor/water/Initialize() . = ..() @@ -26,12 +26,12 @@ footstep_sounds = F?.footstep_sounds update_icon() handle_fish() - soundloop = new(list(src), FALSE) - soundloop.start() + // soundloop = new(list(src), FALSE) // CHOMPEdit: Removing soundloop for now. + // soundloop.start() // CHOMPEdit: Removing soundloop for now. /turf/simulated/floor/water/Destroy() - soundloop.stop() - QDEL_NULL(soundloop) + // soundloop.stop() // CHOMPEdit: Removing soundloop for now. + // QDEL_NULL(soundloop) // CHOMPEdit: Removing soundloop for now. . = ..()