8 Commits

Author SHA1 Message Date
Adam Macdonald
a2c9a3a000 Fix small typo in comment 2023-10-26 15:21:12 +01:00
Adam Macdonald
116b98edf0 Bump versions 2023-10-26 15:20:49 +01:00
Adam Macdonald
f7d3b293e7 Update .gitignore 2023-10-26 15:20:25 +01:00
Adam Macdonald
e402bd0749 Update Gradle wrapper scripts 2023-10-26 15:11:04 +01:00
Adam Macdonald
11dd1cf701 Rename logo.png -> icon.png 2023-06-08 01:54:20 +01:00
Adam Macdonald
1d18ffbe27 Update to Minecraft 1.20 2023-06-07 21:49:26 +01:00
Adam Macdonald
d7e5e2846f No more Gradle wrapper binaries :) 2023-05-31 16:59:14 +01:00
Adam Macdonald
e9bc7e34d5 Improve logo 2023-05-31 16:58:04 +01:00
8 changed files with 13 additions and 13 deletions

3
.gitignore vendored
View File

@@ -13,3 +13,6 @@ run/
# Gradle wrapper binaries
gradle/wrapper/
# Remapped source file directory
remappedSrc/

View File

@@ -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

Binary file not shown.

View File

@@ -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
View File

@@ -130,11 +130,14 @@ 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.
if ! "$cygwin" && ! "$darwin" && ! "$nonstop" ; then

View File

@@ -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

View File

@@ -30,7 +30,7 @@
"depends": {
"fabricloader": ">=0.14.21",
"fabric-api": "*",
"minecraft": "~1.19.4",
"minecraft": "~1.20",
"java": ">=17"
}
}