mirror of
https://github.com/TeamMidnightDust/CullLeaves.git
synced 2025-12-15 14:15:08 +01:00
- Port to 1.21.11 (Mounts of Mayhem) - Add support for Sodium 0.8.0 - Update to MidnightLib 1.9.2
42 lines
815 B
TOML
42 lines
815 B
TOML
modLoader = "javafml"
|
|
loaderVersion = "[1,)"
|
|
#issueTrackerURL = ""
|
|
license = "MIT License"
|
|
|
|
[[mods]]
|
|
modId = "cullleaves"
|
|
version = "${version}"
|
|
displayName = "CullLeaves"
|
|
authors = "Motschen, TeamMidnightDust"
|
|
description = '''
|
|
Adds culling to leaf blocks, providing a huge performance boost over vanilla.
|
|
'''
|
|
logoFile = "icon.png"
|
|
|
|
[[mixins]]
|
|
config = "cullleaves.mixins.json"
|
|
|
|
[[mixins]]
|
|
config = "cullleaves-neoforge.mixins.json"
|
|
|
|
[[dependencies.cullleaves]]
|
|
modId = "neoforge"
|
|
required = true
|
|
versionRange = "[20.3,)"
|
|
ordering = "NONE"
|
|
side = "CLIENT"
|
|
|
|
[[dependencies.cullleaves]]
|
|
modId = "minecraft"
|
|
required = true
|
|
versionRange = "${minecraft}"
|
|
ordering = "NONE"
|
|
side = "CLIENT"
|
|
|
|
[[dependencies.cullleaves]]
|
|
modId = "midnightlib"
|
|
required = true
|
|
versionRange = "[1.0.0,)"
|
|
ordering = "BEFORE"
|
|
side = "CLIENT"
|