Ignite (ignite-experimental-hytale) is a mod that provides Mixin and Access Widener support for other mods to modify the server at runtime, without needing to patch the game files.
Features
This mod provides the following tools for developers to use:
This mod is intended to address most of the limitations in Hyxin, however it is unable to fix all of them due to Hytale and Java limitations. This version is intended to work in singleplayer and multiplayer. It is compatible with existing mods that were designed for Hyxin without needing any changes.
If you are only interested in creating mixins for a server run independently of the client, I would recommend the launcher version of Ignite.
Install
Place the ignite jar into the /earlyplugins directory (which you may need to manually create next to the /mods directory).
Any mods that use Ignite should then be placed into the /earlyplugins directory.
Note: Ensure other mixin loaders such as Hyxin are removed before running.
Creating a Mod
The structure of your mod should follow the existing project structure Hytale expects with a manifest.json. However, inside the manifest.json you will be able to add your mixins and access widener files under the new Ignite section. For example:
{
"Group": "...",
"Name": "...",
"Version": "...",
"Description": "...",
"Ignite": {
"Mixins": [
"your_plugin.mixins.json"
],
"Wideners": [
"your_plugin.accesswidener"
]
}
}
Your mixin config files are configured how mixin normally expects. For example:
{
"required": true,
"minVersion": "0.8",
"package": "com.example.mixin.test",
"plugin": "com.example.mixin.plugin.TestMixinPlugin",
"target": "@env(DEFAULT)",
"compatibilityLevel": "JAVA_25",
"mixins": [
"TestMixin"
],
"injectors": {
"defaultRequire": 1
},
"overwrites": {
"requireAnnotations": true
}
}
Your access widener files are configured how access wideners normally expects. For example:
accessWidener v1 named
accessible class com/example/Example$InnerExample
Your mod must then always be placed in the /earlyplugins for Ignite to load it.
Inspiration
This project has many parts inspired by the following projects:

