From b298ed19ff7efb686bb56e647f6819debe2f4c50 Mon Sep 17 00:00:00 2001 From: terminx Date: Sat, 19 Oct 2019 23:41:18 +0000 Subject: [PATCH] Ugh, apparently we rely on this for FURY git-svn-id: https://svn.eduke32.com/eduke32@8135 1a8010ca-5511-0410-912e-c29ae57300e0 --- source/duke3d/src/sector.cpp | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/source/duke3d/src/sector.cpp b/source/duke3d/src/sector.cpp index 99241cc4f..400623d9a 100644 --- a/source/duke3d/src/sector.cpp +++ b/source/duke3d/src/sector.cpp @@ -543,10 +543,7 @@ int G_ActivateWarpElevators(int spriteNum, int warpDir) if (i == -1) return 1; // No find -#ifndef EDUKE32_STANDALONE - if (!FURY) - A_PlaySound(warpDir ? ELEVATOR_ON : ELEVATOR_OFF, spriteNum); -#endif + A_PlaySound(warpDir ? ELEVATOR_ON : ELEVATOR_OFF, spriteNum); for (SPRITES_OF(STAT_EFFECTOR, i)) if (SLT(i) == SE_17_WARP_ELEVATOR && SHT(i) == sprite[spriteNum].hitag)