Bass Command Help stuff
This commit is contained in:
parent
28b1c755fa
commit
76886f1bf8
1 changed files with 5 additions and 5 deletions
|
|
@ -1,5 +1,5 @@
|
||||||
/*
|
/*
|
||||||
* @author Hax / Hax6775 / Schlauer_Hax
|
@author Hax / Hax6775 / Schlauer_Hax
|
||||||
*/
|
*/
|
||||||
|
|
||||||
package com.bbn.hadder.commands.music;
|
package com.bbn.hadder.commands.music;
|
||||||
|
|
@ -14,7 +14,7 @@ public class BassCommand implements Command {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void executed(String[] args, CommandEvent event) {
|
public void executed(String[] args, CommandEvent event) {
|
||||||
if (args.length==1) {
|
if (args.length == 1) {
|
||||||
float value = Float.parseFloat(args[0]);
|
float value = Float.parseFloat(args[0]);
|
||||||
EqualizerFactory equalizer = new EqualizerFactory();
|
EqualizerFactory equalizer = new EqualizerFactory();
|
||||||
for (int i = 0; i < BASS_BOOST.length; i++) {
|
for (int i = 0; i < BASS_BOOST.length; i++) {
|
||||||
|
|
@ -33,16 +33,16 @@ public class BassCommand implements Command {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String description() {
|
public String description() {
|
||||||
return null;
|
return "commands.music.bass.help.description";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String usage() {
|
public String usage() {
|
||||||
return null;
|
return "[Bass-Level]";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public String example() {
|
public String example() {
|
||||||
return null;
|
return "1000";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue