1.1.0
Compatibility
Changes
📦 NeoneX Release v1.1.0 - The Utility Update
This is the first stable release of NeoneX, officially moving out of the initial Alpha stage. This update introduces a comprehensive suite of Quality-of-Life (QoL) commands to make server management and testing significantly faster.
✨ New Features & Commands
NeoneX now includes a unified utility framework for common operator tasks:
-
Player Maintenance:
/heal: Instantly restores the player to maximum health and fills the hunger bar./feed: Fully restores hunger and saturation levels./repair: Repairs the durability of the item currently held in the main hand.
-
World & Time Control:
/day: Sets the world time to 1000 (Morning) with a single command./night: Sets the world time to 13000 (Nightfall).
-
Gamemode Shortcuts:
/gmc: Quick switch to Creative Mode./gms: Quick switch to Survival Mode.
🛠️ Technical Improvements
- Code Refactoring: Commands are now organized within a dedicated
UtilityCommandsclass for better performance and maintainability. - Optimized Registration: Improved the
ModCommandRegistrarlogic to ensure seamless integration with the Forge/FML command bus. - Stability: Fixed potential edge cases where command execution could fail in specific server environments.
Installation Note: This version is built for Minecraft 1.20.4 (Forge). It is required on both the client and the server for full functionality.
Projects on Modrinth are automatically available through a Maven repository for use with JVM build tools such as Gradle. To learn more about the Modrinth Maven API, click here.
Note: When available, you should use the creator's maven repo instead as it will have transitive dependency information that the Modrinth Maven API does not. You may also end up with duplicate dependencies if you use a mix of Modrinth and non-Modrinth Maven repositories for your dependencies, because the group identifier will be different when served through the Modrinth Maven API.
Maven coordinates:
Version ID:
build.gradle:
repositories {
exclusiveContent {
forRepository {
maven {
name = "Modrinth"
url = "https://api.modrinth.com/maven"
}
}
// forRepositories(fg.repository) // Uncomment when using ForgeGradle
filter {
includeGroup "maven.modrinth"
}
}
}
// Standard Gradle dependency
dependencies {
implementation "maven.modrinth:JrfD1DAK:3OZUj6SV"
}
// Legacy Loom dependency
dependencies {
modImplementation "maven.modrinth:JrfD1DAK:3OZUj6SV"
}

