Start on NeoForge support

This commit is contained in:
2025-01-21 00:44:33 +13:00
parent fff624aa9d
commit cdaab07aa5
12 changed files with 220 additions and 110 deletions

View File

@@ -0,0 +1,7 @@
package me.lucaslah.nrb;
import net.neoforged.fml.common.Mod;
@Mod("noreportbutton")
public class NoReportButtonNeoForge {
}

View File

@@ -0,0 +1,31 @@
modLoader = "javafml"
loaderVersion = "[0,)"
license = "GNU LESSER GENERAL PUBLIC LICENSE"
clientSideOnly=true
[[mods]]
modId = "noreportbutton"
version = "${version}"
displayName = "No Report Button"
authors = "Lucaslah"
description = '''
Removes the chat report button from the multiplayer menu screen
'''
logoFile = "icon.png"
[[dependencies.noreportbutton]]
modId = "neoforge"
mandatory = true
versionRange = "[0,)"
ordering = "NONE"
side = "CLIENT"
[[dependencies.noreportbutton]]
modId = "minecraft"
mandatory = true
versionRange = "[1.21,)"
ordering = "NONE"
side = "CLIENT"
[[mixins]]
config = "noreportbutton.mixins.json"

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

View File

@@ -0,0 +1,6 @@
{
"pack": {
"description": "NoReportButton",
"pack_format": 9
}
}