Skip to content

Commit 88844fb

Browse files
committed
Update to 1.18
1 parent 3fea1bf commit 88844fb

21 files changed

+1305
-731
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Rat's Mischief - Changelog:
22

3+
### Rat's Mischief 1.3.3 - 1.18
4+
- Update to Minecraft 1.18
5+
- Disabled Origins and Requiem compat. Will be re-enabled when Requiem updates to 1.18
6+
37
### Rat's Mischief 1.3.2 - 1.17.1
48
- Added proper subtitles for rat sounds (thanks to MoriyaShiine)
59
- Fixed a loot table path error that would be caused when killing rats (thanks to MoriyaShiine)

build.gradle

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
plugins {
2-
id 'fabric-loom' version '0.8-SNAPSHOT'
2+
id 'fabric-loom' version '0.10-SNAPSHOT'
33
id 'maven-publish'
44
id 'com.matthewprenger.cursegradle' version '1.4.0'
55
id 'org.ajoberstar.grgit' version '3.1.1'
66
id 'com.github.breadmoirai.github-release' version '2.2.12'
77
}
88

9-
sourceCompatibility = JavaVersion.VERSION_16
10-
targetCompatibility = JavaVersion.VERSION_16
9+
sourceCompatibility = JavaVersion.VERSION_17
10+
targetCompatibility = JavaVersion.VERSION_17
1111
// Adds a few utility methods like getProjectProperty
1212
apply from: 'https://raw.githubusercontent.com/NerdHubMC/Gradle-Scripts/master/scripts/utilities.gradle'
1313
apply from: 'https://raw.githubusercontent.com/NerdHubMC/Gradle-Scripts/master/scripts/fabric/publish/changelog.gradle'
@@ -81,24 +81,24 @@ dependencies {
8181
// }
8282

8383
// Geckolib
84-
modImplementation 'software.bernie.geckolib:geckolib-fabric-1.17:3.0.5:dev'
84+
modImplementation 'software.bernie.geckolib:geckolib-fabric-1.18:3.0.21'
8585

8686
// // cloth config
8787
// modApi("me.shedaniel.cloth:config-2:4.8.2") {
8888
// exclude(group: "net.fabricmc.fabric-api")
8989
// }
9090
// include "me.shedaniel.cloth:config-2:4.8.2"
9191

92-
modImplementation "io.github.ladysnake:requiem-api:${requiem_version}"
93-
modRuntime "io.github.ladysnake:requiem-core:${requiem_version}"
94-
modCompileOnly "io.github.ladysnake:requiem:${requiem_version}"
95-
modRuntime "io.github.ladysnake:requiem:${requiem_version}"
92+
// modImplementation "io.github.ladysnake:requiem-api:${requiem_version}"
93+
// modRuntime "io.github.ladysnake:requiem-core:${requiem_version}"
94+
// modCompileOnly "io.github.ladysnake:requiem:${requiem_version}"
95+
// modRuntime "io.github.ladysnake:requiem:${requiem_version}"
9696

9797
// Made available when Requiem is present
98-
modCompileOnly "io.github.ladysnake:PlayerAbilityLib:${pal_version}"
99-
modCompileOnly "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-base:3.+"
98+
// modCompileOnly "io.github.ladysnake:PlayerAbilityLib:${pal_version}"
99+
// modCompileOnly "io.github.onyxstudios.Cardinal-Components-API:cardinal-components-base:3.+"
100100

101-
modImplementation "com.github.apace100:origins-fabric:${origins_version}"
101+
// modImplementation "com.github.apace100:origins-fabric:${origins_version}"
102102

103103
runtimeOnly "me.zeroeightsix:fiber:0.23.0-2"
104104

gradle.properties

+9-5
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,19 @@
22
org.gradle.jvmargs=-Xmx1G
33

44
# Fabric Properties
5-
minecraft_version=1.17.1
6-
yarn_mappings=1.17.1+build.14
7-
loader_version=0.11.6
5+
6+
7+
minecraft_version=1.18
8+
yarn_mappings=1.18+build.1
9+
loader_version=0.12.6
810

911
#Fabric api
10-
fabric_version=0.37.0+1.17
12+
fabric_version=0.43.1+1.18
13+
14+
1115

1216
# Mod Properties
13-
mod_version = 1.3.2
17+
mod_version = 1.3.3
1418
maven_group = io.github.ladysnake
1519
archives_base_name = ratsmischief
1620

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)