diff --git a/build.gradle b/build.gradle index 6c9e531..d3f3485 100644 --- a/build.gradle +++ b/build.gradle @@ -16,7 +16,7 @@ minecraft { runs { client { workingDirectory project.file('run') - taskName project.name + ' Client' + taskName project.name + 'Client' // Recommended logging data for a userdev environment // The markers can be added/remove as needed separated by commas. @@ -42,7 +42,7 @@ minecraft { server { workingDirectory project.file('run') - taskName project.name + ' Server' + taskName project.name + 'Server' // property 'forge.logging.markers', 'REGISTRIES' // property 'forge.logging.console.level', 'debug' @@ -60,7 +60,7 @@ minecraft { // The gametest system is also enabled by default for other run configs under the /test command. gameTestServer { workingDirectory project.file('run') - taskName project.name + ' GameTestServer' + taskName project.name + 'GameTest' // property 'forge.logging.markers', 'REGISTRIES' // property 'forge.logging.console.level', 'debug' @@ -75,12 +75,12 @@ minecraft { data { workingDirectory project.file('run') - taskName project.name + ' Data' + taskName project.name + 'Data' // property 'forge.logging.markers', 'REGISTRIES' // property 'forge.logging.console.level', 'debug' - args '--mod', 'examplemod', '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') + args '--mod', "${mod_id}", '--all', '--output', file('src/generated/resources/'), '--existing', file('src/main/resources/') mods { modSource { diff --git a/gradle.properties b/gradle.properties index dc9e97c..7bd0330 100644 --- a/gradle.properties +++ b/gradle.properties @@ -2,8 +2,8 @@ mod_id = worldhandler mod_name = WorldHandler version = 3.4 -minecraft_version = 1.19.1 -forge_version = 42.0.0 +minecraft_version = 1.19.2 +forge_version = 43.0.0 group = exopandora.worldhandler main_class = exopandora.worldhandler.Main author = Exopandora diff --git a/src/main/java/exopandora/worldhandler/Main.java b/src/main/java/exopandora/worldhandler/Main.java index c59db71..0b5a34d 100644 --- a/src/main/java/exopandora/worldhandler/Main.java +++ b/src/main/java/exopandora/worldhandler/Main.java @@ -11,7 +11,7 @@ public class Main { public static final String NAME = "World Handler"; public static final String MODID = "worldhandler"; - public static final String MC_VERSION = "1.19.1"; + public static final String MC_VERSION = "1.19.2"; public static final String MOD_VERSION = "3.4"; public static final String URL = "https://minecraft.curseforge.com/projects/world-handler-command-gui"; diff --git a/src/main/resources/META-INF/mods.toml b/src/main/resources/META-INF/mods.toml index 17febf1..71f2d98 100644 --- a/src/main/resources/META-INF/mods.toml +++ b/src/main/resources/META-INF/mods.toml @@ -11,7 +11,7 @@ license="GPL v3.0" [[mods]] modId="worldhandler" - version="1.19.1-${version}" + version="1.19.2-${version}" displayName="World Handler" description="The World Handler provides a simple and easy to use graphical user interface for commands. It lets you create powerful and complex sub-commands alongside NBT-structures within seconds."