Skip to content

Commit 256d2e0

Browse files
committed
textadvance don't skip cs or text
1 parent e0a3d35 commit 256d2e0

4 files changed

Lines changed: 5 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
- 2626(SMN) slight delay last combat interact -Kiarra
2-
- Dailies -alydev
2+
- Dailies -alydev
3+
- Changed "don't skip cutscenes" checkbox to also turn off text skip -alydev

Directory.Build.targets

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project>
22
<PropertyGroup Condition="$(MSBuildProjectName) != 'GatheringPathRenderer'">
3-
<Version>14.205.29.0</Version>
3+
<Version>14.205.30.0</Version>
44
</PropertyGroup>
55

66
<PropertyGroup>

Questionable/External/TextAdvanceIpc.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ private static ExternalTerritoryConfig CreateExternalTerritoryConfig(bool dontSk
7979
EnableRequestHandin = true,
8080
EnableCutsceneEsc = !dontSkipCutscenes,
8181
EnableCutsceneSkipConfirm = !dontSkipCutscenes,
82-
EnableTalkSkip = true,
82+
EnableTalkSkip = !dontSkipCutscenes,
8383
EnableRequestFill = true,
8484
EnableAutoInteract = false
8585
};

Questionable/Windows/ConfigComponents/GeneralConfigComponent.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ public override void DrawTab()
258258
using (ImRaii.PushIndent())
259259
{
260260
bool dontSkipCutscenes = Configuration.General.DontSkipCutscenes;
261-
if (ImGui.Checkbox("but don't skip cutscenes!", ref dontSkipCutscenes))
261+
if (ImGui.Checkbox("but don't skip cutscenes or dialogue", ref dontSkipCutscenes))
262262
{
263263
Configuration.General.DontSkipCutscenes = dontSkipCutscenes;
264264
Save();

0 commit comments

Comments
 (0)