Skip to content

Commit

Permalink
Remove CBTesting Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
CADIndie committed Sep 22, 2024
1 parent 0d58d6a commit 6d4c840
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/main/assets/optionsviveprofiles.txt
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@
"chatNotificationSound": "block.note_block.bell",
"jumpThreshold": "0.05",
"movementSpeedMultiplier": "1.0",
"seated": "true",
"seated": "false",
"doubleGUIResolution": "false",
"physicalKeyboardTheme": "DEFAULT",
"rightclickDelay": "VANILLA",
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/pojlib/APIHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public static <T> T postFullUrl(String url, HashMap<String, Object> query, T bod
return new Gson().fromJson(postRaw(url + parseQueries(query), body.toString()), tClass);
}

public static final String SUPPORTED_VERSIONS = "https://raw.githubusercontent.com/QuestCraftPlusPlus/Pojlib/CBTesting/supportedVersions.json";
public static final String SUPPORTED_VERSIONS = "https://raw.githubusercontent.com/QuestCraftPlusPlus/Pojlib/QuestCraft/supportedVersions.json";

public static String[] getQCSupportedVersions() {
File versionsJson = new File(Constants.USER_HOME + "/supportedVersions.json");
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/pojlib/InstanceHandler.java
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@
import pojlib.util.json.ModrinthIndexJson;

public class InstanceHandler {
public static final String MODS = "https://raw.githubusercontent.com/QuestCraftPlusPlus/Pojlib/CBTesting/mods.json";
public static final String DEV_MODS = "https://raw.githubusercontent.com/QuestCraftPlusPlus/Pojlib/CBTesting/devmods.json";
public static final String MODS = "https://raw.githubusercontent.com/QuestCraftPlusPlus/Pojlib/QuestCraft/mods.json";
public static final String DEV_MODS = "https://raw.githubusercontent.com/QuestCraftPlusPlus/Pojlib/QuestCraft/devmods.json";

public static MinecraftInstances.Instance create(Activity activity, MinecraftInstances instances, String instanceName, String userHome, ModLoader modLoader, String mrpackFilePath, String imageURL) {
File mrpackJson = new File(Constants.USER_HOME + "/instances/" + instanceName.toLowerCase(Locale.ROOT).replaceAll(" ", "_") + "/setup/modrinth.index.json");
Expand Down

0 comments on commit 6d4c840

Please sign in to comment.