Add NeoForge support and switch from closure to action #2
Reference in New Issue
Block a user
No description provided.
Delete Branch "master"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This pr adds NeoForge support, as well as switch references to the groovy specific
Closure
class to gradle'sAction
interface. Without this change it's actually quite a pain to use this with kotlin DSL, as you can't just use a lambda, you have to do some bs with making instances of things...This fixes that. Unlike Forge, NeoForge doesn't put mixin related stuff in the manifest, it puts it in the
neoforge.mods.toml
, so everything gets remapped properly without extra handling like forge has.