You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// When true, this property will have all Eclipse/IntelliJ IDEA run configurations run the "prepareX" task for the given run configuration before launching the game.
36
+
// In most cases, it is not necessary to enable.
37
+
// enableEclipsePrepareRuns = true
38
+
// enableIdeaPrepareRuns = true
39
+
40
+
// This property allows configuring Gradle's ProcessResources task(s) to run on IDE output locations before launching the game.
41
+
// It is REQUIRED to be set to true for this template to function.
42
+
// See https://docs.gradle.org/current/dsl/org.gradle.language.jvm.tasks.ProcessResources.html
43
+
copyIdeResources =true
44
+
45
+
// When true, this property will add the folder name of all declared run configurations to generated IDE run configurations.
46
+
// The folder name can be set on a run configuration using the "folderName" property.
47
+
// By default, the folder name of a run configuration is the name of the Gradle project containing it.
48
+
// generateRunFolders = true
49
+
50
+
// This property enables access transformers for use in development.
51
+
// They will be applied to the Minecraft artifact.
52
+
// The access transformer file can be anywhere in the project.
53
+
// However, it must be at "META-INF/accesstransformer.cfg" in the final mod jar to be loaded by Forge.
54
+
// This default location is a best practice to automatically put the file in the right place in the final jar.
55
+
// See https://docs.minecraftforge.net/en/latest/advanced/accesstransformers/ for more information.
# | official | MCVersion | Official field/method names from Mojang mapping files |
28
+
# | parchment | YYYY.MM.DD-MCVersion | Open community-sourced parameter names and javadocs layered on top of official |
29
+
#
30
+
# You must be aware of the Mojang license when using the 'official' or 'parchment' mappings.
31
+
# See more information here: https://github.com/MinecraftForge/MCPConfig/blob/master/Mojang.md
32
+
#
33
+
# Parchment is an unofficial project maintained by ParchmentMC, separate from Minecraft Forge.
34
+
# Additional setup is needed to use their mappings, see https://parchmentmc.org/docs/getting-started
35
+
mapping_channel=official
36
+
# The mapping version to query from the mapping channel.
37
+
# This must match the format required by the mapping channel.
38
+
mapping_version=1.20.1
39
+
40
+
41
+
## Mod Properties
42
+
43
+
# The unique mod identifier for the mod. Must be lowercase in English locale. Must fit the regex [a-z][a-z0-9_]{1,63}
44
+
# Must match the String constant located in the main mod class annotated with @Mod.
45
+
mod_id=simpleircbridge
46
+
# The human-readable display name for the mod.
47
+
mod_name=SimpleIRCBridge
48
+
# The license of the mod. Review your options at https://choosealicense.com/. All Rights Reserved is the default.
49
+
mod_license=BSD-2-Clause
50
+
# The mod version. See https://semver.org/
51
+
mod_version=1.6.0
52
+
# The group ID for the mod. It is only important when publishing as an artifact to a Maven repository.
53
+
# This should match the base package used for the mod sources.
54
+
# See https://maven.apache.org/guides/mini/guide-naming-conventions.html
55
+
mod_group_id=simpleircbridge
56
+
# The authors of the mod. This is a simple text string that is used for display purposes in the mod list.
57
+
mod_authors=xnrand & contributors
58
+
# The description of the mod. This is a simple multiline text string that is used for display purposes in the mod list.
59
+
mod_description=This server-side mod allows you to relay all chat on the server to and from an IRC channel. Its configuration is kept very simple and its functionality is basic.
0 commit comments