Update build version

This commit is contained in:
zontreck 2023-12-16 01:47:36 -07:00
parent 2446bf00c3
commit f5054a32b9
3 changed files with 3 additions and 3 deletions

View file

@ -49,7 +49,7 @@ mod_name=Aria's Essentials
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
mod_license=GPLv3
# The mod version. See https://semver.org/
mod_version=1.1.121623.0130
mod_version=1.1.121623.0146
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
# This should match the base package used for the mod sources.
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html

View file

@ -55,7 +55,6 @@ public class AriasEssentials {
ModLoadingContext.get().registerConfig(ModConfig.Type.SERVER, AEServerConfig.SPEC, "arias-essentials-server.toml");
ModMessages.register();
@ -68,6 +67,7 @@ public class AriasEssentials {
public void setup(FMLCommonSetupEvent ev)
{
ModMessages.register();
}

View file

@ -3,8 +3,8 @@ package dev.zontreck.essentials.commands.gui;
import com.mojang.brigadier.CommandDispatcher;
import com.mojang.brigadier.arguments.BoolArgumentType;
import dev.zontreck.essentials.Messages;
import dev.zontreck.essentials.networking.ModMessages;
import dev.zontreck.essentials.networking.S2CUpdateHearts;
import dev.zontreck.libzontreck.networking.ModMessages;
import dev.zontreck.libzontreck.util.ChatHelpers;
import net.minecraft.commands.CommandSourceStack;
import net.minecraft.commands.Commands;