SERVER: Restore default message flag for ambient_bgm

This commit is contained in:
MotoLegacy 2024-02-16 17:56:31 -05:00
parent 818ccac2c7
commit 7e441e3ae9

View file

@ -134,6 +134,8 @@ void() ambient_bgm =
self.spawnflags = 1; self.spawnflags = 1;
// sound to loop // sound to loop
self.message = self.noise2; self.message = self.noise2;
// backwards compatibility
if (!self.message) self.message = "sounds/ambience/amb_loop.wav";
// call ambient_generic() // call ambient_generic()
ambient_generic(); ambient_generic();
} }