Modifiy project info
- downgrade required loader to 0.16.2 - set mod version to 0.0.1 - set mod author and description - set environment to "server"
This commit is contained in:
parent
3edb3025fd
commit
1f28554a23
|
@ -6,10 +6,10 @@ org.gradle.parallel=true
|
||||||
# check these on https://fabricmc.net/develop
|
# check these on https://fabricmc.net/develop
|
||||||
minecraft_version=1.21
|
minecraft_version=1.21
|
||||||
yarn_mappings=1.21+build.9
|
yarn_mappings=1.21+build.9
|
||||||
loader_version=0.16.5
|
loader_version=0.16.2
|
||||||
|
|
||||||
# Mod Properties
|
# Mod Properties
|
||||||
mod_version=1.0.0
|
mod_version=0.0.1
|
||||||
maven_group=io.github.vftdan.mcentityvisibilityrules
|
maven_group=io.github.vftdan.mcentityvisibilityrules
|
||||||
archives_base_name=entity-visibility-rules
|
archives_base_name=entity-visibility-rules
|
||||||
|
|
||||||
|
|
|
@ -3,9 +3,9 @@
|
||||||
"id": "entity-visibility-rules",
|
"id": "entity-visibility-rules",
|
||||||
"version": "${version}",
|
"version": "${version}",
|
||||||
"name": "Entity Visibility Rules",
|
"name": "Entity Visibility Rules",
|
||||||
"description": "This is an example description! Tell everyone what your mod is about!",
|
"description": "Define additional rules for deciding whether a player should receive events from a given entity",
|
||||||
"authors": [
|
"authors": [
|
||||||
"Me!"
|
"vftdan"
|
||||||
],
|
],
|
||||||
"contact": {
|
"contact": {
|
||||||
"homepage": "https://fabricmc.net/",
|
"homepage": "https://fabricmc.net/",
|
||||||
|
@ -13,7 +13,7 @@
|
||||||
},
|
},
|
||||||
"license": "CC0-1.0",
|
"license": "CC0-1.0",
|
||||||
"icon": "assets/entity-visibility-rules/icon.png",
|
"icon": "assets/entity-visibility-rules/icon.png",
|
||||||
"environment": "*",
|
"environment": "server",
|
||||||
"entrypoints": {
|
"entrypoints": {
|
||||||
"main": [
|
"main": [
|
||||||
"io.github.vftdan.mcentityvisibilityrules.EntityVisibilityRules"
|
"io.github.vftdan.mcentityvisibilityrules.EntityVisibilityRules"
|
||||||
|
@ -30,7 +30,7 @@
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"depends": {
|
"depends": {
|
||||||
"fabricloader": ">=0.16.5",
|
"fabricloader": ">=0.16.2",
|
||||||
"minecraft": "~1.21",
|
"minecraft": "~1.21",
|
||||||
"java": ">=21",
|
"java": ">=21",
|
||||||
"fabric-api": "*"
|
"fabric-api": "*"
|
||||||
|
|
Loading…
Reference in New Issue