Skip to content
This repository was archived by the owner on Mar 29, 2025. It is now read-only.

Commit b9e3b72

Browse files
committed
Port to Minecraft 1.16.2
1 parent 46b9b1d commit b9e3b72

File tree

4 files changed

+11
-9
lines changed

4 files changed

+11
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Refined Storage Addons Changelog
22

33
### 0.7.1
4+
- Port to Minecraft 1.16.2 (raoulvdberge)
45
- Added Japanese translation (a2y4)
56
- Updated Chinese translation (1478599553)
67
- Updated Russian translation (KhottyManatee55)

build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ archivesBaseName = 'refinedstorageaddons'
3030
sourceCompatibility = targetCompatibility = compileJava.sourceCompatibility = compileJava.targetCompatibility = '1.8'
3131

3232
minecraft {
33-
mappings channel: 'snapshot', version: '20200707-1.16.1'
33+
mappings channel: 'snapshot', version: '20200723-1.16.1'
3434

3535
runs {
3636
client {
@@ -84,9 +84,9 @@ processResources {
8484
}
8585

8686
dependencies {
87-
minecraft 'net.minecraftforge:forge:1.16.1-32.0.63'
88-
compileOnly fg.deobf("com.refinedmods:refinedstorage:1.9.2+17")
89-
runtimeOnly fg.deobf("com.refinedmods:refinedstorage:1.9.2+17")
87+
minecraft 'net.minecraftforge:forge:1.16.2-33.0.20'
88+
compileOnly fg.deobf("com.refinedmods:refinedstorage:1.9.4+56")
89+
runtimeOnly fg.deobf("com.refinedmods:refinedstorage:1.9.4+56")
9090
}
9191

9292
jar {

src/main/resources/META-INF/mods.toml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
modLoader="javafml"
2-
loaderVersion="[32,)"
2+
loaderVersion="[33,)"
33
issueTrackerURL="https://github.com/refinedmods/refinedstorageaddons"
4+
license="MIT"
45
[[mods]]
56
modId="refinedstorageaddons"
67
version="${version}"
@@ -13,7 +14,7 @@ An addon mod for Refined Storage
1314
'''
1415
[[dependencies.refinedstorageaddons]]
1516
modId="refinedstorage"
16-
versionRange="[1.9.1,)"
17+
versionRange="[1.9.4,)"
1718
mandatory=true
1819
ordering="AFTER"
19-
side="BOTH"
20+
side="BOTH"

src/main/resources/pack.mcmeta

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"pack": {
33
"description": "Refined Storage Addons resources",
4-
"pack_format": 5
4+
"pack_format": 6
55
}
6-
}
6+
}

0 commit comments

Comments
 (0)