File tree Expand file tree Collapse file tree
src/main/java/net/wurstclient/mixin Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 description : " Publish to GitHub"
1717 type : boolean
1818 default : true
19+ publish_curseforge :
20+ description : " Dummy input. Does nothing."
21+ type : boolean
22+ default : false
23+ publish_modrinth :
24+ description : " Dummy input. Does nothing."
25+ type : boolean
26+ default : false
1927 update_website :
2028 description : " Update WurstClient.net post (only works if there already is one)"
2129 type : boolean
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ loader_version=0.19.2
1111loom_version =1.16-SNAPSHOT
1212
1313# Fabric API
14- fabric_api_version =0.147 .0+26.1.2
14+ fabric_api_version =0.149 .0+26.1.2
1515
1616# Mod Properties
1717mod_version =v7.53.1-CevAPI-MC26.1.2
@@ -25,5 +25,5 @@ gh_repo_id=cev-api/Wurst7-CevAPI
2525
2626# Dependencies
2727# check at https://modrinth.com/mod/sodium/versions?l=fabric&g=26.1.2
28- sodium_version =mc26.1.2-0.8.10 -fabric
28+ sodium_version =mc26.1.2-0.8.11 -fabric
2929do_mod_compat_test =true
Original file line number Diff line number Diff line change @@ -79,17 +79,17 @@ private void onRefresh(CallbackInfo ci)
7979 SuggestionsBuilder builder = new SuggestionsBuilder (draftMessage , 0 );
8080 String inlineSuggestion = "" ;
8181 int suggestions = 0 ;
82- for (Command cmd : commands )
83- {
84- if (cmd == null || cmd .getName () == null )
85- continue ;
86-
87- String cmdName = cmd .getName ();
88- if (cmdName .startsWith ("." ))
89- cmdName = cmdName .substring (1 );
90- String candidate = prefix + cmdName ;
91- if (!candidate .toLowerCase (Locale .ROOT ).startsWith (lowerDraft ))
92- continue ;
82+ for (Command cmd : commands )
83+ {
84+ if (cmd == null || cmd .getName () == null )
85+ continue ;
86+
87+ String cmdName = cmd .getName ();
88+ if (cmdName .startsWith ("." ))
89+ cmdName = cmdName .substring (1 );
90+ String candidate = prefix + cmdName ;
91+ if (!candidate .toLowerCase (Locale .ROOT ).startsWith (lowerDraft ))
92+ continue ;
9393
9494 builder .suggest (candidate );
9595 suggestions ++;
You can’t perform that action at this time.
0 commit comments