2 Commits c9c46e71ed ... 8d2e63c0e8

Author SHA1 Message Date
  mastercake10 8d2e63c0e8 increment minor version 8 months ago
  mastercake10 eb50db2868 fix #57 8 months ago
2 changed files with 2 additions and 2 deletions
  1. 1 1
      pom.xml
  2. 1 1
      src/main/java/xyz/spaceio/customoregen/Events.java

+ 1 - 1
pom.xml

@@ -4,7 +4,7 @@
 	<modelVersion>4.0.0</modelVersion>
 	<groupId>xyz.spaceio</groupId>
 	<artifactId>CustomOreGen</artifactId>
-	<version>1.3.37-SNAPSHOT</version>
+	<version>1.3.38-SNAPSHOT</version>
 	<repositories>
 		<!-- Spigot repository -->
 		<repository>

+ 1 - 1
src/main/java/xyz/spaceio/customoregen/Events.java

@@ -33,7 +33,7 @@ public class Events implements Listener {
 	private Method legacyBlockPlaceMethod;
 	
 	private boolean enableStoneGenerator;
-	private Optional<Sound> soundEffect;
+	private Optional<Sound> soundEffect = Optional.empty();
 	private boolean enableParticleEffect;
 	
 	public Events(CustomOreGen customOreGen) {