Change package from *.HotbarReload to *.hotbarreload - just typical convention

This commit is contained in:
Adam Macdonald 2023-03-19 03:04:19 +00:00
parent 47f4d5cce7
commit 0f0f8786ac
4 changed files with 5 additions and 5 deletions

View File

@ -1,4 +1,4 @@
package today.theladpack.HotbarReplace; package today.theladpack.hotbarreplace;
import net.fabricmc.api.ModInitializer; import net.fabricmc.api.ModInitializer;
import org.slf4j.Logger; import org.slf4j.Logger;

View File

@ -1,11 +1,11 @@
package today.theladpack.HotbarReplace.mixin; package today.theladpack.hotbarreplace.mixin;
import net.minecraft.client.gui.screen.TitleScreen; import net.minecraft.client.gui.screen.TitleScreen;
import org.spongepowered.asm.mixin.Mixin; import org.spongepowered.asm.mixin.Mixin;
import org.spongepowered.asm.mixin.injection.At; import org.spongepowered.asm.mixin.injection.At;
import org.spongepowered.asm.mixin.injection.Inject; import org.spongepowered.asm.mixin.injection.Inject;
import org.spongepowered.asm.mixin.injection.callback.CallbackInfo; import org.spongepowered.asm.mixin.injection.callback.CallbackInfo;
import today.theladpack.HotbarReplace.HotbarReplace; import today.theladpack.hotbarreplace.HotbarReplace;
@Mixin(TitleScreen.class) @Mixin(TitleScreen.class)
public class HotbarReplaceMixin { public class HotbarReplaceMixin {

View File

@ -19,7 +19,7 @@
"environment": "*", "environment": "*",
"entrypoints": { "entrypoints": {
"main": [ "main": [
"today.theladpack.HotbarReplace.HotbarReplace" "today.theladpack.hotbarreplace.HotbarReplace"
] ]
}, },
"mixins": [ "mixins": [

View File

@ -1,7 +1,7 @@
{ {
"required": true, "required": true,
"minVersion": "0.8", "minVersion": "0.8",
"package": "today.theladpack.HotbarReplace.mixin", "package": "today.theladpack.hotbarreplace.mixin",
"compatibilityLevel": "JAVA_17", "compatibilityLevel": "JAVA_17",
"mixins": [ "mixins": [
], ],