Skip to content

Commit

Permalink
Change mod id
Browse files Browse the repository at this point in the history
  • Loading branch information
ramidzkh committed Apr 14, 2022
1 parent 3ab5ee7 commit e6f8930
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 7 deletions.
1 change: 0 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ processResources {
inputs.property("version", project.version)

from("LICENSE")
exclude(".cache")

filesMatching("fabric.mod.json") {
expand("version": project.version)
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/appbot/AppliedBotanics.java
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@

public interface AppliedBotanics {

String MOD_ID = "applied-botanics";
String MOD_ID = "appbot";

PartItem<?> MANA_P2P_TUNNEL = Util.make(() -> {
PartModels.registerModels(PartModelsHelper.createModels(ManaP2PTunnelPart.class));
Expand Down
3 changes: 3 additions & 0 deletions src/main/resources/assets/appbot/lang/en_us.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"item.appbot.mana_p2p_tunnel": "Mana P2P Tunnel"
}
3 changes: 0 additions & 3 deletions src/main/resources/assets/applied-botanics/lang/en_us.json

This file was deleted.

8 changes: 6 additions & 2 deletions src/main/resources/fabric.mod.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"schemaVersion": 1,
"id": "applied-botanics",
"id": "appbot",
"version": "${version}",
"mixins": ["appbot.mixins.json"],
"depends": {
Expand All @@ -12,5 +12,9 @@
"description": "mana through ae2, what could go wrong",
"icon": "logo.png",
"authors": ["ramidzkh"],
"license": ["LGPL-3.0-or-later"]
"license": ["LGPL-3.0-or-later"],
"contact": {
"homepage": "https://github.com/ramidzkh/Applied-Botanics#readme",
"issues": "https://github.com/ramidzkh/Applied-Botanics/issues"
}
}

0 comments on commit e6f8930

Please sign in to comment.