Skip to content

Commit

Permalink
fix: fixed crash on Startup
Browse files Browse the repository at this point in the history
  • Loading branch information
Dunimark committed Aug 12, 2023
1 parent 8a33591 commit 613c823
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17

archivesBaseName = 'rftl'
version = '1.0.0+1.20'
version = '1.0.1+1.20'
group = 'de.dunimark.rftl'
actualmodid = 'rotten_flesh_to_leather'
actualmodid = 'rftl'

loom {
mixin {
Expand Down
File renamed without changes
8 changes: 4 additions & 4 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"schemaVersion": 1,
"id": "rotten_flesh_to_leather",
"id": "rftl",
"version": "1.0.0+1.20",
"name": "Rotten Flesh to Leather",
"description": "A simple mod that makes rotten flesh less useless by allowing smelting into leather",
Expand All @@ -12,14 +12,14 @@
"sources": "https://github.com/dunimark/rftl"
},
"license": "GPL-3.0 License",
"icon": "assets/rotten_flesh_to_leather/icon.png",
"icon": "assets/rftl/icon.png",
"environment": "*",
"entrypoints": {
"main": [
"de.dunimark.rottenfleshtoleather.RottenFleshToLeatherMod"
"de.dunimark.rftl.RottenFleshToLeatherMod"
],
"client": [
"de.dunimark.rottenfleshtoleather.ClientInit"
"de.dunimark.rftl.ClientInit"
]
},
"depends": {
Expand Down
2 changes: 1 addition & 1 deletion src/main/resources/pack.mcmeta
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"pack": {
"pack_format": 15,
"description": "rotten_flesh_to_leather resources"
"description": "rftl resources"
}
}

0 comments on commit 613c823

Please sign in to comment.