Update mappings and forge, correct toml keys

This commit is contained in:
Kenzie Togami 2019-02-18 21:03:03 -08:00 committed by Matthew Miller
parent de9798bf7e
commit 7faafa1635
2 changed files with 14 additions and 8 deletions

View File

@ -14,7 +14,7 @@ buildscript {
apply plugin: 'net.minecraftforge.gradle' apply plugin: 'net.minecraftforge.gradle'
def minecraftVersion = "1.13.2" def minecraftVersion = "1.13.2"
def forgeVersion = "25.0.13" def forgeVersion = "25.0.34"
dependencies { dependencies {
compile project(':worldedit-core') compile project(':worldedit-core')
@ -28,7 +28,7 @@ sourceCompatibility = 1.8
targetCompatibility = 1.8 targetCompatibility = 1.8
minecraft { minecraft {
mappings channel: 'snapshot', version: '20180921-1.13' mappings channel: 'snapshot', version: '20190217-1.13.1'
runs { runs {
client = { client = {

View File

@ -1,7 +1,7 @@
# The name of the mod loader type to load - for regular FML @Mod mods it should be javafml # The name of the mod loader type to load - for regular FML @Mod mods it should be javafml
modLoader="javafml" modLoader="javafml"
# A version range to match for said mod loader - for regular FML @Mod it will be the minecraft version (without the 1.) # A version range to match for said mod loader - for regular FML @Mod it will be the minecraft version (without the 1.)
loaderVersion="[13,)" loaderVersion="[24,)"
# A URL to refer people to when problems occur with this mod # A URL to refer people to when problems occur with this mod
issueTrackerURL="https://discord.gg/YKbmj7V" issueTrackerURL="https://discord.gg/YKbmj7V"
# A URL for the "homepage" for this mod, displayed in the mod UI # A URL for the "homepage" for this mod, displayed in the mod UI
@ -11,7 +11,7 @@ logoFile="worldedit-icon.png"
# A text field displayed in the mod UI # A text field displayed in the mod UI
authors="sk89q, wizjany, TomyLobo, kenzierocks, Me4502" authors="sk89q, wizjany, TomyLobo, kenzierocks, Me4502"
# A list of mods - how many allowed here is determined by the individual mod loader # A list of mods - how many allowed here is determined by the individual mod loader
[[worldedit]] [[mods]]
# The modid of the mod # The modid of the mod
modId="worldedit" modId="worldedit"
# The version number of the mod - there's a few well known ${} variables useable here or just hardcode it # The version number of the mod - there's a few well known ${} variables useable here or just hardcode it
@ -20,11 +20,17 @@ version="${internalVersion}"
displayName="WorldEdit" displayName="WorldEdit"
# The description text for the mod (multi line!) # The description text for the mod (multi line!)
description=''' description='''
WorldEdit is an easy-to-use in-game world editor for Minecraft, supporting both single player and multiplayer. WorldEdit is an easy-to-use in-game world editor for Minecraft, supporting both single- and multi-player.
''' '''
[[dependencies.sponge]] [[dependencies.worldedit]]
modId="minecraft"
mandatory=true
versionRange="[1.13.2]"
ordering="NONE"
side="SERVER"
[[dependencies.worldedit]]
modId="sponge" modId="sponge"
mandatory=false mandatory=false
versionRange="[1.13]" versionRange="[1.13]"
ordering="NONE" ordering="BEFORE"
side="BOTH" side="SERVER"