repo for my hex addons :3
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix mc-plugin icons

+2 -1
+2 -1
plugin/src/main/kotlin/org/eu/net/pool/mc_plugin/FabricModBuilder.kt
··· 11 11 var name = id 12 12 var description = "" 13 13 var license = "GPL-3.0" 14 - var icon = "assets.mica/icon.png" 14 + var icon: String? = null 15 15 var environment: Environment? = null 16 16 @PublishedApi internal val authors = JsonDsl.Array() 17 17 @PublishedApi internal val contributors = JsonDsl.Array() ··· 88 88 put("version", version) 89 89 put("name", name) 90 90 put("description", description) 91 + if (icon != null) put("icon", icon!!) 91 92 environment?.let { put("environment", it.id) } 92 93 put("authors", authors) 93 94 put("contributors", contributors)