summaryrefslogtreecommitdiffstats
path: root/TemplePushing.c4s/Sections.c4d
diff options
context:
space:
mode:
Diffstat (limited to 'TemplePushing.c4s/Sections.c4d')
-rw-r--r--TemplePushing.c4s/Sections.c4d/SectClassic.c4d/Script.c6
-rw-r--r--TemplePushing.c4s/Sections.c4d/SectCloudTemple.c4d/Script.c4
-rw-r--r--TemplePushing.c4s/Sections.c4d/SectLiquidTemple.c4d/Script.c4
3 files changed, 4 insertions, 10 deletions
diff --git a/TemplePushing.c4s/Sections.c4d/SectClassic.c4d/Script.c b/TemplePushing.c4s/Sections.c4d/SectClassic.c4d/Script.c
index bead84f..7699859 100644
--- a/TemplePushing.c4s/Sections.c4d/SectClassic.c4d/Script.c
+++ b/TemplePushing.c4s/Sections.c4d/SectClassic.c4d/Script.c
@@ -57,7 +57,5 @@ protected func Initialize()
public func SectionAmbienceSounds()
{
- if (mode == MODE_Festive) return [["FestiveAmbience.ogg", 25]];
- else if (mode == MODE_Apocalyptic) return [["ExtremeAmbience.ogg", 75]];
- else return [["Ambience.ogg", 50], ["Rain.ogg", 75]];
-} \ No newline at end of file
+ return [["Ambience.ogg", 50], ["Rain.ogg", 75]];
+}
diff --git a/TemplePushing.c4s/Sections.c4d/SectCloudTemple.c4d/Script.c b/TemplePushing.c4s/Sections.c4d/SectCloudTemple.c4d/Script.c
index 5818969..6aae5d7 100644
--- a/TemplePushing.c4s/Sections.c4d/SectCloudTemple.c4d/Script.c
+++ b/TemplePushing.c4s/Sections.c4d/SectCloudTemple.c4d/Script.c
@@ -61,7 +61,5 @@ protected func Initialize()
public func SectionAmbienceSounds()
{
- if (mode == MODE_Festive) return [["FestiveAmbience.ogg", 25]];
- else if (mode == MODE_Apocalyptic) return [["ExtremeAmbience.ogg", 75]];
- else return [["CloudAmbience.ogg", 50]];
+ return [["CloudAmbience.ogg", 50]];
}
diff --git a/TemplePushing.c4s/Sections.c4d/SectLiquidTemple.c4d/Script.c b/TemplePushing.c4s/Sections.c4d/SectLiquidTemple.c4d/Script.c
index a169b11..248785b 100644
--- a/TemplePushing.c4s/Sections.c4d/SectLiquidTemple.c4d/Script.c
+++ b/TemplePushing.c4s/Sections.c4d/SectLiquidTemple.c4d/Script.c
@@ -37,7 +37,5 @@
public func SectionAmbienceSounds()
{
- if (mode == MODE_Festive) return [["FestiveAmbience.ogg", 25]];
- else if (mode == MODE_Apocalyptic) return [["ExtremeAmbience.ogg", 75]];
- else return [["LiquidAmbience.ogg", 50], ["Rain.ogg", 10]];
+ return [["LiquidAmbience.ogg", 50], ["Rain.ogg", 10]];
}