Disables water soundloop as it's choppy. Rain loop fix inc once I can test

This commit is contained in:
Rykka
2022-02-09 02:30:11 -08:00
parent ebce5a1c08
commit de4d25856e
+5 -5
View File
@@ -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.
. = ..()