Correct all package names & bump version to 0.1.1

This commit is contained in:
Adam Macdonald 2023-03-24 02:35:17 +00:00
parent cbdb5f141c
commit 809870f4a9
4 changed files with 5 additions and 5 deletions

View File

@ -11,8 +11,8 @@ yarn_mappings=1.19.3+build.5
loader_version=0.14.17 loader_version=0.14.17
# Mod Properties # Mod Properties
mod_version = 0.1.0 mod_version = 0.1.1
maven_group = io.github.twokilohertz maven_group = io.github.twokilohertz.hotbarreplace
archives_base_name = HotbarReplace archives_base_name = HotbarReplace
# Dependencies # Dependencies

View File

@ -23,7 +23,7 @@ public class HotbarReplace implements ModInitializer {
@Override @Override
public void onInitialize() { public void onInitialize() {
LOGGER.info("HotbarReplace initialised"); LOGGER.info("HotbarReplace v0.1.1 initialised");
} }
public static void tryReplaceSlot(ItemPlacementContext context, Item item) { public static void tryReplaceSlot(ItemPlacementContext context, Item item) {

View File

@ -20,7 +20,7 @@
"environment": "*", "environment": "*",
"entrypoints": { "entrypoints": {
"main": [ "main": [
"io.github.twokilohertz.HotbarReplace" "io.github.twokilohertz.hotbarreplace.HotbarReplace"
] ]
}, },
"mixins": [ "mixins": [

View File

@ -1,7 +1,7 @@
{ {
"required": true, "required": true,
"minVersion": "0.8", "minVersion": "0.8",
"package": "io.github.twokilohertz.mixin", "package": "io.github.twokilohertz.hotbarreplace.mixin",
"compatibilityLevel": "JAVA_17", "compatibilityLevel": "JAVA_17",
"mixins": [ "mixins": [
], ],