From 9efecde10b2f8a5b5dc367af618074d4d06deba7 Mon Sep 17 00:00:00 2001 From: spencershepard Date: Thu, 29 Feb 2024 18:07:55 -0800 Subject: [PATCH] always keep CTLD crates on, even when 'Logistics Base' is disabled --- Generator/RotorOpsConflict.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Generator/RotorOpsConflict.py b/Generator/RotorOpsConflict.py index 2b55edb..131808f 100644 --- a/Generator/RotorOpsConflict.py +++ b/Generator/RotorOpsConflict.py @@ -23,7 +23,7 @@ def triggerSetup(rops, options): if options["perks"]: trig.actions.append(dcs.action.DoScriptFile(rops.scripts["RotorOpsPerks.lua"])) script = ("--OPTIONS HERE!\n\n" + - "RotorOps.CTLD_crates = " + lb("crates") + "\n\n" + + "RotorOps.CTLD_crates = true" + "RotorOps.CTLD_sound_effects = true\n\n" + "RotorOps.force_offroad = " + lb("force_offroad") + "\n\n" + "RotorOps.voice_overs = " + lb("voiceovers") + "\n\n" +