Skip to content

Commit 90dd628

Browse files
committed
fix default configuration being wrong
1 parent 387a4db commit 90dd628

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# v1.1.4
2+
- fix solid wave trail being wrong due to invalid configuration
3+
14
# v1.1.3
25
- simplify mod scope (to prevent issues with shaders)
36

mod.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"geode": "4.8.0",
33
"gd": {"android": "2.2074", "win": "2.2074", "mac": "2.2074", "ios": "2.2074"},
4-
"version": "v1.1.3",
4+
"version": "v1.1.4",
55
"id": "nytelyte.wave_trail_draw_fix",
66
"name": "Wave Trail Draw Fix",
77
"developer": "NyteLyte",

src/main.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,7 @@ matjson::Value defaultConfiguration = matjson::parse(R"(
1515
"start": -0.3333333,
1616
"end": 0.3333333,
1717
"opacity": 0.65,
18-
"nonsolid-only": true,
19-
"subparts": [{"color": "#ffffff"}]
18+
"subparts": [{"color": "#ffffff", "nonsolid-only": true}]
2019
}
2120
]
2221
)").unwrap();

0 commit comments

Comments
 (0)