diff --git a/README.md b/README.md index be0572483..4635581b5 100644 --- a/README.md +++ b/README.md @@ -82,6 +82,8 @@ - Added config options for the ocean biomes, wither wart and burning blossom - Added Icy Iris - Added Flat Mushroom + - Added cocoa trees to the Tropical Rainforest + - Added jungle wood to trees in the Brushland and Scrubland Version 0.6.2 '20-08-13' - Fixed bigtrees compatibility diff --git a/build.xml b/build.xml index 37a3426fc..a78a1ef9f 100644 --- a/build.xml +++ b/build.xml @@ -7,7 +7,7 @@ - + diff --git a/common/biomesoplenty/handlers/SoundHandler.java b/common/biomesoplenty/handlers/SoundHandler.java index a88c4f392..6cec5d6fa 100644 --- a/common/biomesoplenty/handlers/SoundHandler.java +++ b/common/biomesoplenty/handlers/SoundHandler.java @@ -23,7 +23,7 @@ public class SoundHandler { try { - event.manager.addSound(soundFile); + event.manager.soundPoolSounds.addSound(soundFile); } catch (Exception e) @@ -36,7 +36,7 @@ public class SoundHandler { try { - event.manager.addSound(recordSoundFile); + event.manager.soundPoolStreaming.addSound(recordSoundFile); } catch (Exception e)