Compare commits
8 Commits
v0.1.2_1.1
...
v0.1.2_1.2
Author | SHA1 | Date | |
---|---|---|---|
![]() |
a2c9a3a000 | ||
![]() |
116b98edf0 | ||
![]() |
f7d3b293e7 | ||
![]() |
e402bd0749 | ||
![]() |
11dd1cf701 | ||
![]() |
1d18ffbe27 | ||
![]() |
d7e5e2846f | ||
![]() |
e9bc7e34d5 |
3
.gitignore
vendored
3
.gitignore
vendored
@@ -13,3 +13,6 @@ run/
|
||||
|
||||
# Gradle wrapper binaries
|
||||
gradle/wrapper/
|
||||
|
||||
# Remapped source file directory
|
||||
remappedSrc/
|
||||
|
@@ -6,9 +6,9 @@ org.gradle.parallel=true
|
||||
|
||||
# Fabric Properties
|
||||
# check these on https://fabricmc.net/develop
|
||||
minecraft_version=1.19.4
|
||||
yarn_mappings=1.19.4+build.2
|
||||
loader_version=0.14.21
|
||||
minecraft_version=1.20.2
|
||||
yarn_mappings=1.20.2+build.4
|
||||
loader_version=0.14.24
|
||||
|
||||
# Mod Properties
|
||||
mod_version = 0.1.2
|
||||
@@ -16,4 +16,4 @@ maven_group = io.github.twokilohertz.hotbarreplace
|
||||
archives_base_name = HotbarReplace
|
||||
|
||||
# Dependencies
|
||||
fabric_version=0.83.0+1.19.4
|
||||
fabric_version=0.90.4+1.20.2
|
||||
|
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
BIN
gradle/wrapper/gradle-wrapper.jar
vendored
Binary file not shown.
6
gradle/wrapper/gradle-wrapper.properties
vendored
6
gradle/wrapper/gradle-wrapper.properties
vendored
@@ -1,6 +0,0 @@
|
||||
distributionBase=GRADLE_USER_HOME
|
||||
distributionPath=wrapper/dists
|
||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1.1-bin.zip
|
||||
networkTimeout=10000
|
||||
zipStoreBase=GRADLE_USER_HOME
|
||||
zipStorePath=wrapper/dists
|
5
gradlew
vendored
5
gradlew
vendored
@@ -130,10 +130,13 @@ location of your Java installation."
|
||||
fi
|
||||
else
|
||||
JAVACMD=java
|
||||
which java >/dev/null 2>&1 || die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
if ! command -v java >/dev/null 2>&1
|
||||
then
|
||||
die "ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH.
|
||||
|
||||
Please set the JAVA_HOME variable in your environment to match the
|
||||
location of your Java installation."
|
||||
fi
|
||||
fi
|
||||
|
||||
# Increase the maximum file descriptors if we can.
|
||||
|
@@ -51,7 +51,7 @@ public class HotbarReplace implements ModInitializer {
|
||||
client.interactionManager.clickSlot(player.currentScreenHandler.syncId, i, GLFW.GLFW_MOUSE_BUTTON_1, SlotActionType.PICKUP, player);
|
||||
|
||||
/*
|
||||
Wait 50 seconds (on another thread) before attempting to move the new stack
|
||||
Wait 50 milliseconds (on another thread) before attempting to move the new stack
|
||||
PlayerInventory.MAIN_SIZE added to the selected slot (hotbar slot) is the correct slot ID
|
||||
*/
|
||||
scheduler.schedule(() -> {
|
||||
|
Binary file not shown.
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.8 KiB |
@@ -30,7 +30,7 @@
|
||||
"depends": {
|
||||
"fabricloader": ">=0.14.21",
|
||||
"fabric-api": "*",
|
||||
"minecraft": "~1.19.4",
|
||||
"minecraft": "~1.20",
|
||||
"java": ">=17"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user