Fixes weather sounds (#69944)

* Fixes weather sounds

Timber changed the args to this signal in cbc6f35f54, and didn't update my code.
Damn you timber.

Thanks to that bro in coderbus who told me about this
This commit is contained in:
LemonInTheDark
2022-09-26 20:37:35 -04:00
committed by GitHub
parent f315a3f97a
commit 2d89c7d4d3
2 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -32,9 +32,9 @@
return
change_the_track(TRUE)
/datum/component/area_sound_manager/proc/react_to_z_move(datum/source, old_z, new_z)
/datum/component/area_sound_manager/proc/react_to_z_move(datum/source, turf/old_turf, turf/new_turf)
SIGNAL_HANDLER
if(!length(accepted_zs) || (new_z in accepted_zs))
if(!length(accepted_zs) || (new_turf.z in accepted_zs))
return
qdel(src)