From 6cb00f3436c0f853bb45b74b8e2f2e7d9774e1b6 Mon Sep 17 00:00:00 2001 From: iCaitlyn <55845572+iCaitlyn@users.noreply.github.com> Date: Mon, 14 Sep 2020 18:05:49 +0800 Subject: [PATCH] Fix icon not properly defined The icon field was left blank, which resulted in Mod Menu complaining about it not having an icon, despite the icon already being included. This pull request fixes that. --- src/main/resources/fabric.mod.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/resources/fabric.mod.json b/src/main/resources/fabric.mod.json index bdfd628..85ca1cc 100644 --- a/src/main/resources/fabric.mod.json +++ b/src/main/resources/fabric.mod.json @@ -14,7 +14,7 @@ }, "license": "CC0-1.0", - "icon": "", + "icon": "assets/icon.png", "environment": "*", "entrypoints": { @@ -34,4 +34,4 @@ "suggests": { "flamingo": "*" } -} \ No newline at end of file +}