Skip to content

Commit 68748a6

Browse files
committed
IDEA調整 & Reference.kt
1 parent 6e22371 commit 68748a6

File tree

5 files changed

+45
-17
lines changed

5 files changed

+45
-17
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Mon Sep 11 21:00:44 JST 2017
1+
#Tue Sep 12 02:55:59 JST 2017
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0.1-bin.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-4.0.1-all.zip
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
package c6h2cl2.sccsm
2+
3+
/**
4+
* @author C6H2Cl2
5+
* @author Kamesuta
6+
*/
7+
const val MODID = "sccsm"
8+
const val NAME = "SuperCompressedCobblestoneMod"
9+
const val VERSION = "\${version}"
10+
const val FORGE = "\${forgeversion}"
11+
const val MINECRAFT = "\${mcversion}"
12+
const val DEPENDENCIES = "required-after:forgelin"
13+
const val PROXY_SERVER = "c6h2cl2.sccsm.CommonProxy"
14+
const val PROXY_CLIENT = "c6h2cl2.sccsm.ClientProxy"
15+
const val GUI_FACTORY = "c6h2cl2.sccsm.gui.config.ConfigGuiFactory"

src/main/kotlin/c6h2cl2/sccsm/SCCSMConst.kt

Lines changed: 0 additions & 10 deletions
This file was deleted.

src/main/kotlin/c6h2cl2/sccsm/SCCSMCore.kt

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import net.minecraftforge.fml.common.event.FMLPreInitializationEvent
1313
* @author C6H2Cl2
1414
*/
1515

16-
@Mod(modid = MOD_ID, name = MOD_NAME, version = VERSION, useMetadata = true, dependencies = DEPENDENT)
16+
@Mod(modid = MODID, name = NAME, version = VERSION, dependencies = DEPENDENCIES, useMetadata = true)
1717
class SCCSMCore {
1818

1919
companion object {
@@ -44,10 +44,7 @@ class SCCSMCore {
4444

4545
private fun loadMeta() {
4646
meta.autogenerated = false
47-
meta.modId = MOD_ID
48-
meta.name = MOD_NAME
49-
meta.version = VERSION
5047
meta.authorList.add("C6H2Cl2")
51-
meta.description = "You can compress cobblestone up to 500 Billion"
48+
meta.authorList.add("Kamesuta")
5249
}
5350
}

src/main/resources/mcmods.info

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
{
2+
"modListVersion": 2,
3+
"modList": [
4+
{
5+
"modid": "sccsm",
6+
"name": "SuperCompressedCobblestoneMod",
7+
"description": "You can compress cobblestone up to 500 Billion",
8+
"mcversion": "${mcversion}",
9+
"version": "${version}",
10+
"authorList": [
11+
"C6H2Cl2",
12+
"Kamesuta"
13+
],
14+
"credits": "2017 KotlinModdingNetwork",
15+
"dependants": [],
16+
"dependencies": ["Forge@[${minforgeversion},)", "forgelin", "ExtraUtilities"],
17+
"parent": "",
18+
"requiredMods": ["Forge@[${minforgeversion},)", "forgelin"],
19+
"logoFile": "",
20+
"screenshots": [],
21+
"updateUrl": "https://github.com/KotlinModdingNetwork/SuperCompressedCobblestoneMod/releases",
22+
"url": "https://github.com/KotlinModdingNetwork/SuperCompressedCobblestoneMod/",
23+
"useDependencyInformation": true
24+
}
25+
]
26+
}

0 commit comments

Comments
 (0)