Update to 1.20

- Remove some devenv mods that are not updated yet
 - Replace lib39 with fletchingtable for automixins
 - Use non kotlin entrypoints
 - Make use of DrawContext in a bunch of places
This commit is contained in:
nea
2023-06-08 00:11:46 +02:00
parent b65382a7b7
commit f98a1f5d53
14 changed files with 106 additions and 87 deletions

View File

@@ -20,17 +20,11 @@
"icon": "assets/firmament/icon.png",
"environment": "client",
"entrypoints": {
"main": [
{
"adapter": "kotlin",
"value": "moe.nea.firmament.Firmament"
}
],
"main": [
"moe.nea.firmament.Firmament::onInitialize"
],
"client": [
{
"adapter": "kotlin",
"value": "moe.nea.firmament.Firmament"
}
"moe.nea.firmament.Firmament::onClientInitialize"
],
"rei_client": [
"moe.nea.firmament.rei.FirmamentReiPlugin"

View File

@@ -2,7 +2,7 @@
"required": true,
"plugin": "moe.nea.firmament.init.MixinPlugin",
"package": "moe.nea.firmament.mixins",
"compatibilityLevel": "JAVA_16",
"compatibilityLevel": "JAVA_17",
"injectors": {
"defaultRequire": 1
}