File tree Expand file tree Collapse file tree 4 files changed +6
-7
lines changed
src/main/java/com/mcmoddev/orespawn Expand file tree Collapse file tree 4 files changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ buildscript {
1919 dependencies {
2020 classpath ' net.minecraftforge.gradle:ForgeGradle:2.2-SNAPSHOT'
2121 classpath ' gradle.plugin.com.matthewprenger:CurseGradle:1.0.9'
22- classpath ' org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.5 '
22+ classpath ' org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:2.6.1 '
2323 }
2424}
2525
@@ -72,7 +72,7 @@ minecraft {
7272 version = ' 1.11.2-13.20.1.2386'
7373 runDir = ' run'
7474 mappings = ' stable_32'
75- // coreMod = ""
75+ // coreMod = ''
7676 makeObfSourceJar = false
7777
7878 replace ' @FINGERPRINT@' , project. findProperty(' signSHA1' )
@@ -254,7 +254,7 @@ curseforge {
254254 project {
255255 id = " 245586"
256256 changelog = file(" CHANGELOG.txt" )
257- releaseType = " alpha "
257+ releaseType = " release "
258258 def projName = " OreSpawn"
259259 def displayVersion = getVersion(" VERSION" , mod_file)
260260 if (System . getenv(). BUILD_NUMBER ) {
Original file line number Diff line number Diff line change 2222import org .apache .logging .log4j .LogManager ;
2323import org .apache .logging .log4j .Logger ;
2424
25-
2625import net .minecraftforge .common .MinecraftForge ;
2726import net .minecraftforge .fml .common .Mod ;
2827import net .minecraftforge .fml .common .Mod .EventHandler ;
Original file line number Diff line number Diff line change @@ -133,8 +133,8 @@ private static void saveKnownConfigs() {
133133 File in = p .toFile ();
134134
135135 JsonArray data = new JsonArray ();
136-
137- extractedConfigs .forEach ( val -> data .add ( new JsonPrimitive (val ) ) );
136+
137+ extractedConfigs .forEach ( val -> data .add (new JsonPrimitive (val )) );
138138
139139 try {
140140 FileUtils .writeStringToFile (in , gson .toJson (data ), Charset .defaultCharset ());
Original file line number Diff line number Diff line change 33public class Constants {
44 public static final String MODID = "orespawn" ;
55 public static final String NAME = "MMD OreSpawn" ;
6- public static final String VERSION = "3.2.0 " ;
6+ public static final String VERSION = "3.2.1 " ;
77 public static final String RETROGEN_KEY = "Retrogen" ;
88 public static final String CONFIG_FILE = "config/orespawn.cfg" ;
99 public static final String FORCE_RETROGEN_KEY = "Force Retrogen" ;
You can’t perform that action at this time.
0 commit comments