mirror of
https://github.com/Lucaslah/No-Report-Button.git
synced 2026-01-10 04:57:51 +00:00
Start on NeoForge support
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package me.lucaslah.nrb;
|
||||
|
||||
import net.neoforged.fml.common.Mod;
|
||||
|
||||
@Mod("noreportbutton")
|
||||
public class NoReportButtonNeoForge {
|
||||
}
|
||||
31
neoforge/src/main/resources/META-INF/neoforge.mods.toml
Normal file
31
neoforge/src/main/resources/META-INF/neoforge.mods.toml
Normal 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"
|
||||
BIN
neoforge/src/main/resources/icon.png
Normal file
BIN
neoforge/src/main/resources/icon.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 6.4 KiB |
6
neoforge/src/main/resources/pack.mcmeta
Normal file
6
neoforge/src/main/resources/pack.mcmeta
Normal file
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"pack": {
|
||||
"description": "NoReportButton",
|
||||
"pack_format": 9
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user