diff --git a/gradle.properties b/gradle.properties index 650cd29..02ec592 100644 --- a/gradle.properties +++ b/gradle.properties @@ -43,13 +43,13 @@ mapping_version=2023.09.03-1.20.1 # The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63} # Must match the String constant located in the main mod class annotated with @Mod. -mod_id=thresholds +mod_id=otemod # The human-readable display name for the mod. mod_name=Thresholds # 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.4.011524.2056 +mod_version=1.4.011524.2235 # 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 @@ -57,4 +57,4 @@ mod_group_id=dev.zontreck # The authors of the mod. This is a simple text string that is used for display purposes in the mod list. mod_authors=zontreck # The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list. -mod_description=Only The Essentials \ No newline at end of file +mod_description=Thresholds \ No newline at end of file diff --git a/src/main/java/dev/zontreck/otemod/OTEMod.java b/src/main/java/dev/zontreck/otemod/OTEMod.java index 317d081..eb8d6d3 100644 --- a/src/main/java/dev/zontreck/otemod/OTEMod.java +++ b/src/main/java/dev/zontreck/otemod/OTEMod.java @@ -101,7 +101,7 @@ public class OTEMod public OTEMod() { - OTEMod.OTEPrefix = ChatColor.doColors("!dark_gray![!dark_green!!bold!OTEMod!reset!!dark_gray!]!reset!"); + OTEMod.OTEPrefix = ChatColor.doColors("!dark_gray![!dark_green!!bold!Thresholds!reset!!dark_gray!]!reset!"); OTEMod.ONLY_PLAYER = ChatColor.doColors("!dark_red!Only a player can execute this command"); bus = FMLJavaModLoadingContext.get().getModEventBus(); diff --git a/src/main/java/dev/zontreck/otemod/implementation/Messages.java b/src/main/java/dev/zontreck/otemod/implementation/Messages.java index b767259..812a39d 100644 --- a/src/main/java/dev/zontreck/otemod/implementation/Messages.java +++ b/src/main/java/dev/zontreck/otemod/implementation/Messages.java @@ -16,7 +16,7 @@ public class Messages { static{ - OTE_PREFIX = "!Dark_Gray![!Dark_Purple!OTE!Dark_Gray!] "; + OTE_PREFIX = "!Dark_Gray![!Dark_Purple!Thresholds!Dark_Gray!] "; PREFIX_UPDATED = OTE_PREFIX + " !Dark_Purple!Your prefix has been updated"; PREFIX_COLOR_UPDATED = OTE_PREFIX + "!Dark_Purple!Your prefix color has been updated";