Skip to content

Commit

Permalink
Fixes and Temp Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
CADIndie committed Sep 10, 2024
1 parent 977fcbe commit 0d58d6a
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 6 deletions.
Binary file modified src/main/assets/lwjgl/lwjgl-glfw-classes.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion src/main/assets/lwjgl/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1725980855923
1725986487354
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": "false",
"seated": "true",
"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/QuestCraft/supportedVersions.json";
public static final String SUPPORTED_VERSIONS = "https://raw.githubusercontent.com/QuestCraftPlusPlus/Pojlib/CBTesting/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/QuestCraft/mods.json";
public static final String DEV_MODS = "https://raw.githubusercontent.com/QuestCraftPlusPlus/Pojlib/QuestCraft/devmods.json";
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 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
1 change: 0 additions & 1 deletion src/main/jni/input_bridge_v3.c
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ void pojavPumpEvents(void* window) {

while (targetIndex != index) {
GLFWInputEvent event = pojav_environ->events[index];
printf("event type: %i\n", event.type);
switch (event.type) {
case EVENT_TYPE_CHAR:
if(pojav_environ->GLFW_invoke_Char) pojav_environ->GLFW_invoke_Char(window, event.i1);
Expand Down

0 comments on commit 0d58d6a

Please sign in to comment.