File tree Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Expand file tree Collapse file tree 3 files changed +22
-2
lines changed Original file line number Diff line number Diff line change 2
2
name : Bug report
3
3
about : Create a report to help us improve
4
4
title : " [BUG]"
5
- labels : bug
5
+ labels : bug, unverified
6
6
assignees : vanZeben
7
7
8
8
---
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Feature request
3
+ about : Suggest an idea for this project
4
+ title : " [Feature]"
5
+ labels : enhancement, unverified
6
+ assignees : vanZeben
7
+
8
+ ---
9
+
10
+ ** Is your feature request related to a problem? Please describe.**
11
+ A clear and concise description of what the problem is. Ex. I'm always frustrated when [ ...]
12
+
13
+ ** Describe the solution you'd like**
14
+ A clear and concise description of what you want to happen.
15
+
16
+ ** Describe alternatives you've considered**
17
+ A clear and concise description of any alternative solutions or features you've considered.
18
+
19
+ ** Additional context**
20
+ Add any other context or screenshots about the feature request here.
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ public static IEnumerator GetLatestVersionDownload()
36
36
string status = result [ 0 ] [ "approval" ] ;
37
37
38
38
// Check if the remote version on modsaber is newer than what we have and if that version is approved
39
- if ( latestVersion <= currentVersion && status = = "approved" ) yield break ;
39
+ if ( latestVersion <= currentVersion && status ! = "approved" ) yield break ;
40
40
41
41
Data . Logger . Info ( $ "Found a new version, lets download it { result [ 0 ] [ "files" ] [ "steam" ] [ "url" ] . Value } ") ;
42
42
You can’t perform that action at this time.
0 commit comments