File tree 3 files changed +8
-2
lines changed
src/main/java/kpan/b_line_break/util
3 files changed +8
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
3
+ ### [ 1.12.2-forge-1.2.1] ( https://github.com/KatatsumuriPan/BetterLineBreak/releases/tag/1.12.2-forge-1.2.1 ) - 2024-02-20
4
+
5
+ - Fix resetting config bug.
6
+
3
7
### [ 1.12.2-forge-1.2.0] ( https://github.com/KatatsumuriPan/BetterLineBreak/releases/tag/1.12.2-forge-1.2.0 ) - 2024-02-17
4
8
5
9
- Add Better Questing compatibility.
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ modGroup = kpan.b_line_break
7
7
8
8
# Version of your mod.
9
9
# This field can be left empty if you want your mod's version to be determined by the latest git tag instead.
10
- modVersion = 1.2.0
10
+ modVersion = 1.2.1
11
11
12
12
# Whether to use the old jar naming structure (modid-mcversion-version) instead of the new version (modid-version)
13
13
includeMCVersionJar = false
Original file line number Diff line number Diff line change @@ -121,7 +121,9 @@ public String readQuotedString() {
121
121
int index = string .indexOf ('"' , cursor );
122
122
if (index == -1 )
123
123
return null ;
124
- return readTo (index + 1 );
124
+ String res = readTo (index );
125
+ skip ();
126
+ return res ;
125
127
}
126
128
public String readStr (Predicate <Character > filter ) {
127
129
int start = cursor ;
You can’t perform that action at this time.
0 commit comments