Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update things to 1.20.1 #16

Merged
merged 1 commit into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Fabric/src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,6 @@
},
"depends": {
"fabric": "*",
"minecraft": "1.20.4"
"minecraft": "1.20.1"
}
}
24 changes: 12 additions & 12 deletions Forge/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -54,18 +54,18 @@ minecraft {
}
}

data {
workingDirectory project.file('run')
ideaModule "${rootProject.name}.${project.name}.main"
args '--mod', "${mod_id}", '--all', '--output', file("src/generated/resources/"), '--existing', project(":Common").file("src/main/resources/")
taskName 'Data'
mods {
modDataRun {
source sourceSets.main
source project(":Common").sourceSets.main
}
}
}
// data {
// workingDirectory project.file('run')
// ideaModule "${rootProject.name}.${project.name}.main"
// args '--mod', "${mod_id}", '--all', '--output', file("src/generated/resources/"), '--existing', project(":Common").file("src/main/resources/")
// taskName 'Data'
// mods {
// modDataRun {
// source sourceSets.main
// source project(":Common").sourceSets.main
// }
// }
// }
}
}

Expand Down
2 changes: 1 addition & 1 deletion Forge/src/main/resources/META-INF/mods.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ Minecraft Animations Mod
[[dependencies.improved_animations]]
modId="minecraft"
mandatory=true
versionRange="[1.20.4,1.21)"
versionRange="[1.20.1,1.21)"
ordering="NONE"
side="BOTH"
10 changes: 5 additions & 5 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,17 @@ org.gradle.jvmargs=-Xmx3G
org.gradle.daemon=false

# Common
mc_v=1.20.4
mc_v=1.20.1

# Forge
forge_v=49.0.19
forge_v=47.2.20
catalogue_v=4766090
configured_v=4462894

# Fabric
fabric_v=0.15.3
fabric_api_v=0.93.1
modmenu_v=9.0.0
fabric_v=0.15.6
fabric_api_v=0.91.0
modmenu_v=7.1.0

# Mod Options
mod_name=Improved Animations
Expand Down
Loading