Update to 1.19.2
This commit is contained in:
10
build.gradle
10
build.gradle
@@ -16,7 +16,7 @@ minecraft {
|
|||||||
runs {
|
runs {
|
||||||
client {
|
client {
|
||||||
workingDirectory project.file('run')
|
workingDirectory project.file('run')
|
||||||
taskName project.name + ' Client'
|
taskName project.name + 'Client'
|
||||||
|
|
||||||
// Recommended logging data for a userdev environment
|
// Recommended logging data for a userdev environment
|
||||||
// The markers can be added/remove as needed separated by commas.
|
// The markers can be added/remove as needed separated by commas.
|
||||||
@@ -42,7 +42,7 @@ minecraft {
|
|||||||
|
|
||||||
server {
|
server {
|
||||||
workingDirectory project.file('run')
|
workingDirectory project.file('run')
|
||||||
taskName project.name + ' Server'
|
taskName project.name + 'Server'
|
||||||
|
|
||||||
// property 'forge.logging.markers', 'REGISTRIES'
|
// property 'forge.logging.markers', 'REGISTRIES'
|
||||||
// property 'forge.logging.console.level', 'debug'
|
// 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.
|
// The gametest system is also enabled by default for other run configs under the /test command.
|
||||||
gameTestServer {
|
gameTestServer {
|
||||||
workingDirectory project.file('run')
|
workingDirectory project.file('run')
|
||||||
taskName project.name + ' GameTestServer'
|
taskName project.name + 'GameTest'
|
||||||
|
|
||||||
// property 'forge.logging.markers', 'REGISTRIES'
|
// property 'forge.logging.markers', 'REGISTRIES'
|
||||||
// property 'forge.logging.console.level', 'debug'
|
// property 'forge.logging.console.level', 'debug'
|
||||||
@@ -75,12 +75,12 @@ minecraft {
|
|||||||
|
|
||||||
data {
|
data {
|
||||||
workingDirectory project.file('run')
|
workingDirectory project.file('run')
|
||||||
taskName project.name + ' Data'
|
taskName project.name + 'Data'
|
||||||
|
|
||||||
// property 'forge.logging.markers', 'REGISTRIES'
|
// property 'forge.logging.markers', 'REGISTRIES'
|
||||||
// property 'forge.logging.console.level', 'debug'
|
// 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 {
|
mods {
|
||||||
modSource {
|
modSource {
|
||||||
|
|||||||
@@ -2,8 +2,8 @@
|
|||||||
mod_id = worldhandler
|
mod_id = worldhandler
|
||||||
mod_name = WorldHandler
|
mod_name = WorldHandler
|
||||||
version = 3.4
|
version = 3.4
|
||||||
minecraft_version = 1.19.1
|
minecraft_version = 1.19.2
|
||||||
forge_version = 42.0.0
|
forge_version = 43.0.0
|
||||||
group = exopandora.worldhandler
|
group = exopandora.worldhandler
|
||||||
main_class = exopandora.worldhandler.Main
|
main_class = exopandora.worldhandler.Main
|
||||||
author = Exopandora
|
author = Exopandora
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ public class Main
|
|||||||
{
|
{
|
||||||
public static final String NAME = "World Handler";
|
public static final String NAME = "World Handler";
|
||||||
public static final String MODID = "worldhandler";
|
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 MOD_VERSION = "3.4";
|
||||||
public static final String URL = "https://minecraft.curseforge.com/projects/world-handler-command-gui";
|
public static final String URL = "https://minecraft.curseforge.com/projects/world-handler-command-gui";
|
||||||
|
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ license="GPL v3.0"
|
|||||||
|
|
||||||
[[mods]]
|
[[mods]]
|
||||||
modId="worldhandler"
|
modId="worldhandler"
|
||||||
version="1.19.1-${version}"
|
version="1.19.2-${version}"
|
||||||
displayName="World Handler"
|
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."
|
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."
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user