Make datagen run?

This commit is contained in:
DBotThePony 2024-01-01 14:23:28 +07:00
parent f3bf84a7a2
commit 8e469c309d
Signed by: DBot
GPG Key ID: DCC23B5715498507
2 changed files with 3 additions and 5 deletions

View File

@ -258,8 +258,6 @@ object MRegistry {
bus.addListener(this::registerItemColorHandlers)
bus.addListener(this::registerItemDecorators)
bus.addListener(MCreativeTabs::register)
DecimalProvider.register(bus)
AndroidResearchDescription.register(bus)
AndroidResearchDescriptions.register(bus)

View File

@ -6,7 +6,7 @@
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
modLoader="javafml" #mandatory
# A version range to match for said mod loader - for regular FML @Mod it will be the forge version
loaderVersion="[47,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
loaderVersion="[45,)" #mandatory This is typically bumped every Minecraft version by Forge. See our download page for lists of versions.
# The license for you mod. This is mandatory metadata and allows for easier comprehension of your redistributive properties.
# Review your options at https://choosealicense.com/. All rights reserved is the default copyright stance, and is thus the default here.
license="2 Clause BSD"
@ -41,7 +41,7 @@ Matter. Energy. Combined.
# Does this dependency have to exist - if not, ordering below must be specified
mandatory=true #mandatory
# The version range of the dependency
versionRange="[47.0.0,)" #mandatory
versionRange="[45.0.0,)" #mandatory
# An ordering relationship for the dependency - BEFORE or AFTER required if the relationship is not mandatory
ordering="NONE"
# Side this dependency is applied on - BOTH, CLIENT or SERVER
@ -51,6 +51,6 @@ Matter. Energy. Combined.
modId="minecraft"
mandatory=true
# This version range declares a minimum of the current minecraft version up to but not including the next major version
versionRange="[1.20.1,1.20.2)"
versionRange="[1.19.4,1.20)"
ordering="NONE"
side="BOTH"