Add Neoforge and upgrade template

Forge is not working but I can't really do anything about it
This commit is contained in:
axolotlmaid 2024-06-02 17:27:15 +01:00
parent f0cebb6252
commit 2690515316
20 changed files with 227 additions and 212 deletions

View file

@ -0,0 +1,11 @@
package com.axolotlmaid.optionsprofiles.forge;
import com.axolotlmaid.optionsprofiles.OptionsProfilesMod;
import net.neoforged.fml.common.Mod;
@Mod(OptionsProfilesMod.MOD_ID)
public class OptionsProfilesModNeoForge {
public OptionsProfilesModNeoForge() {
OptionsProfilesMod.init();
}
}

View file

@ -0,0 +1,31 @@
modLoader = "javafml"
loaderVersion = "[2,)"
#issueTrackerURL = ""
license = "GNU GPL 3.0"
[[mods]]
modId = "optionsprofiles"
version = "${version}"
displayName = "Options Profiles"
authors = "AxolotlMaid"
description = '''
Load and save your options from in-game.
'''
logoFile = "icon.png"
[[dependencies.optionsprofiles]]
modId = "neoforge"
type = "required"
versionRange = "[20.6,)"
ordering = "NONE"
side = "BOTH"
[[dependencies.optionsprofiles]]
modId = "minecraft"
type = "required"
versionRange = "[1.20.6,)"
ordering = "NONE"
side = "BOTH"
[[mixins]]
config = "optionsprofiles.mixins.json"

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB