Skip to content

Commit 5be47d6

Browse files
committed
Fix line endings
Accidentally leaked a few CRLFs in
1 parent 49a4090 commit 5be47d6

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

MOD.Scripts.UI.ChapterJump/MODChapterJumpController.cs

+8-8
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ namespace MOD.Scripts.UI.ChapterJump
1010
{
1111
public class MODChapterJumpController
1212
{
13-
private static bool initialized = false;
13+
private static bool initialized = false;
1414
private static List<ChapterJumpEntry> cachedChapterJumps;
1515
private static readonly string ChapterJumpFilePath = Path.Combine(MODSystem.BaseDirectory, "chapterjump.json");
1616

1717
public class ChapterJumpEntry
1818
{
19-
public string English;
20-
public string Japanese;
19+
public string English;
20+
public string Japanese;
2121
public int ChapterNumber;
2222
public int ArcNumber;
2323
public string BlockName;
@@ -29,7 +29,7 @@ public static List<ChapterJumpEntry> ChapterJumpsOrNull
2929
get
3030
{
3131
if (!initialized)
32-
{
32+
{
3333
initialized = true;
3434
if (File.Exists(ChapterJumpFilePath))
3535
{
@@ -49,17 +49,17 @@ public static List<ChapterJumpEntry> ChapterJumpsOrNull
4949
}
5050
}
5151
}
52-
}
53-
catch (System.Exception e)
52+
}
53+
catch (System.Exception e)
5454
{
5555
Debug.Log("Failed to parse chapter jump JSON, falling back to hardcoded chapter jumps: " + e.Message);
5656
}
57-
}
57+
}
5858
else
5959
{
6060
Debug.Log("No chapter jump JSON available, falling back to hardcoded chapter jumps");
6161
}
62-
}
62+
}
6363
return cachedChapterJumps;
6464
}
6565
}

0 commit comments

Comments
 (0)