From 1f28554a2374dffb7e40bb7276a72a368e82e0f2 Mon Sep 17 00:00:00 2001 From: Vftdan Date: Wed, 11 Sep 2024 16:32:18 +0200 Subject: [PATCH] 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" --- gradle.properties | 6 +++--- src/main/resources/fabric.mod.json | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/gradle.properties b/gradle.properties index cecb824..c89db31 100644 --- a/gradle.properties +++ b/gradle.properties @@ -6,12 +6,12 @@ org.gradle.parallel=true # check these on https://fabricmc.net/develop minecraft_version=1.21 yarn_mappings=1.21+build.9 -loader_version=0.16.5 +loader_version=0.16.2 # Mod Properties -mod_version=1.0.0 +mod_version=0.0.1 maven_group=io.github.vftdan.mcentityvisibilityrules archives_base_name=entity-visibility-rules # Dependencies -fabric_version=0.102.0+1.21 \ No newline at end of file +fabric_version=0.102.0+1.21 diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index e3526cf..bcc8f31 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -3,9 +3,9 @@ "id": "entity-visibility-rules", "version": "${version}", "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": [ - "Me!" + "vftdan" ], "contact": { "homepage": "https://fabricmc.net/", @@ -13,7 +13,7 @@ }, "license": "CC0-1.0", "icon": "assets/entity-visibility-rules/icon.png", - "environment": "*", + "environment": "server", "entrypoints": { "main": [ "io.github.vftdan.mcentityvisibilityrules.EntityVisibilityRules" @@ -30,7 +30,7 @@ } ], "depends": { - "fabricloader": ">=0.16.5", + "fabricloader": ">=0.16.2", "minecraft": "~1.21", "java": ">=21", "fabric-api": "*" @@ -38,4 +38,4 @@ "suggests": { "another-mod": "*" } -} \ No newline at end of file +}