Skip to content

Commit aa2e401

Browse files
committed
Updated for Minecraft 1.16.1
1 parent a20e9ee commit aa2e401

4 files changed

Lines changed: 11 additions & 22 deletions

File tree

README.md

Lines changed: 3 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ Using MultiMC - all that's required is to:
2424
- Use Minecraft 1.15
2525
- `Edit Instance`
2626
- `Install Fabric`
27-
- Add hscroll-1.0.1.jar to 'Loader Mods'
27+
- Add hscroll-1.16.1.001.jar to 'Loader Mods'
2828

29-
## Build
29+
## For developers
3030

31-
To build the jar file, run the following commands:
31+
In order to build the jar file, run the following commands:
3232

3333
```
3434
# Set up build environment
@@ -39,17 +39,6 @@ gradle wrapper
3939

4040
The build output will be in the `build/libs` directory.
4141

42-
## Setup
43-
44-
1. Edit build.gradle and mod.json to suit your needs.
45-
- The "mixins" object can be removed from mod.json if you do not need to use mixins.
46-
- Please replace all occurences of "modid" with your own mod ID - sometimes, a different string may also suffice.
47-
2. Run the following command:
48-
49-
```
50-
./gradlew idea
51-
```
52-
5342
## License
5443

5544
This template is available under the CC0 license. Feel free to learn from it and incorporate it in your own projects.

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
plugins {
2-
id 'fabric-loom' version '0.2.6-SNAPSHOT'
2+
id 'fabric-loom' version '0.4-SNAPSHOT'
33
id 'maven-publish'
44
}
55

gradle.properties

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ org.gradle.jvmargs=-Xmx1G
33

44
# Fabric Properties
55
# check these on https://fabricmc.net/use
6-
minecraft_version=1.15
7-
yarn_mappings=1.15+build.2
8-
loader_version=0.7.2+build.175
6+
minecraft_version=1.16.1
7+
yarn_mappings=1.16.1+build.1
8+
loader_version=0.8.8+build.202
99
# Mod Properties
10-
mod_version = 1.0.1
10+
mod_version = 1.16.1.001
1111
maven_group = net.fabricmc
1212
archives_base_name = hscroll
1313

1414
# Dependencies
1515
# currently not on the main fabric site, check on the maven: https://maven.fabricmc.net/net/fabricmc/fabric-api/fabric-api
16-
fabric_version=0.4.25+build.282-1.15
16+
fabric_version=0.13.1+build.370-1.16

src/main/resources/fabric.mod.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@
2121
"mixins": ["hscroll.mixins.json"],
2222

2323
"depends": {
24-
"fabricloader": ">=0.7.2",
25-
"minecraft": "1.15.x"
24+
"fabricloader": ">=0.7.4",
25+
"minecraft": "1.16.x"
2626
},
2727
"suggests": {
2828
"flamingo": "*"

0 commit comments

Comments
 (0)