Skip to content

Commit

Permalink
Merge pull request #53 from sqlongithub/master
Browse files Browse the repository at this point in the history
Add ORB_PICKUP 1.8 Sound
  • Loading branch information
PXAV committed Apr 3, 2021
2 parents 1703f68 + 1d82d93 commit d482550
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion core/pom.xml
Expand Up @@ -172,4 +172,4 @@
</exclusions>
</dependency>
</dependencies>
</project>
</project>
5 changes: 2 additions & 3 deletions core/src/main/java/de/pxav/kelp/core/sound/KelpSound.java
Expand Up @@ -14,9 +14,8 @@
public enum KelpSound {

LEVEL_UP(KelpVersion.MC_1_8_0),
ITEM_BREAK(KelpVersion.MC_1_8_0)

;
ITEM_BREAK(KelpVersion.MC_1_8_0),
ORB_PICKUP(KelpVersion.MC_1_8_0);

private KelpVersion since;

Expand Down
2 changes: 1 addition & 1 deletion kelp-sql/pom.xml
Expand Up @@ -69,4 +69,4 @@
</build>


</project>
</project>
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -244,4 +244,4 @@
</pluginManagement>
</build>

</project>
</project>
Expand Up @@ -28,7 +28,8 @@ public void defineDefaults() {

soundRepository.addSound(KelpSound.LEVEL_UP, Sound.LEVEL_UP.toString());
soundRepository.addSound(KelpSound.ITEM_BREAK, Sound.ITEM_BREAK.toString());

soundRepository.addSound(KelpSound.ORB_PICKUP, Sound.ORB_PICKUP.toString());

long elapsed = System.currentTimeMillis() - started;
System.out.println("[VERSION-1.8] Successfully defined sound names (took " + elapsed + "ms)");
}
Expand Down
2 changes: 1 addition & 1 deletion v_1_14_implementation/pom.xml
Expand Up @@ -105,4 +105,4 @@
</dependency>
</dependencies>

</project>
</project>

0 comments on commit d482550

Please sign in to comment.