diff --git a/src/js/HuesEditor.js b/src/js/HuesEditor.js index cff459f..6fd8e6d 100644 --- a/src/js/HuesEditor.js +++ b/src/js/HuesEditor.js @@ -643,8 +643,6 @@ HuesEditor.prototype.uiCreateEditArea = function() {
\ [DOUBLE] doubles the selected map length by padding it with "."s.
\ [HALVE] shortens the map length by removing every other character.
\ - [<< START] starts the song from the beginning.
\ - [< LOOP] starts the song from the start of the loop.
\
\ You can also add a buildup with [LOAD BUILDUP], or remove it
\ with [REMOVE].
\ diff --git a/src/js/ResourcePack.js b/src/js/ResourcePack.js index e506a94..a3f005d 100644 --- a/src/js/ResourcePack.js +++ b/src/js/ResourcePack.js @@ -417,10 +417,6 @@ Respack.prototype.parseSongFile = function(text) { song.startSilence = el.getTag("startSilence"); song.endSilence = el.getTag("endSilence"); - song.buildupLength = el.getTag("buildupLength"); - if(song.buildupLength) { - debug("Using custom BU length:", song.buildupLength); - } song.buildupName = el.getTag("buildup"); if(song.buildupName) { debug(" Finding a buildup '" + song.buildupName + "' for ", song.name);